jQuery(document).ready(function($) { // Αλλάζει μόνο το κείμενο του κουμπιού, όχι το εικονίδιο var filterButton = $('.berocket_ajax_filters_toggle'); var buttonText = filterButton.contents().filter(function() { return this.nodeType === 3 || (this.nodeType === 1 && !$(this).hasClass('icon') && !$(this).hasClass('fa')); }); if (buttonText.length) { buttonText.each(function() { if (this.nodeType === 3) { this.nodeValue = "Περισσότερα φίλτρα"; } else if (this.nodeType === 1 && this.tagName.toLowerCase() === 'span') { $(this).text("Περισσότερα φίλτρα"); } }); } });