jQuery(function($){ function traducirLoadMore(){ $('a, button').filter(function(){ return $(this).text().trim().toLowerCase() === 'load more'; }).text('Cargar más'); } traducirLoadMore(); $(document).ajaxComplete(traducirLoadMore); }); jQuery(function($){ function quitarComasCategorias() { $('.ui-e-meta-item').each(function() { const htmlSinComas = $(this).html().replace(/,\s*/g, ' '); $(this).html(htmlSinComas); }); } quitarComasCategorias(); // Observa clicks en el botón "Cargar más" $(document).on('click', '.ui-e-load-more', function() { setTimeout(quitarComasCategorias, 500); }); // También por si hay carga AJAX sin clic $(document).ajaxComplete(() => setTimeout(quitarComasCategorias, 100)); });
ES EN