Para cambiar el texto «Productos relacionados» en WooCommerce por cualquier otro texto, simplemente copia el siguiente código en el «functions.php» del editor de temas de tu tema hijo (Child Theme) de WordPress.
Ruta:
Apariencia / Editor de Temas/ functions.php
Después de la línea < ? php
Añade:
// Cambiar el texto "Productos relacionados" en WooCommerce
add_filter('gettext', 'change_rp_text', 10, 3);
add_filter('ngettext', 'change_rp_text', 10, 3);
function change_rp_text($translated, $text, $domain)
{ if ($text === 'Related products' && $domain === 'woocommerce') {
$translated = esc_html__('EL TEXTO NUEVO QUE QUIERO PONER', $domain);}
return $translated;}
Sustituye ‘EL TEXTO NUEVO QUE QUIERO PONER ‘ por el texto que desees que aparezca en esa sección. ¡Voilá!