Hello there,
I want to change text “Related Products”
to “More Products”
Hello there,
I want to change text “Related Products”
to “More Products”
Hello Katarina
Thanks for writing to us
There’s no option for that so you need to add this code in your child theme functions.php
// =================================================
// CHANGE RELATED PRODUCTS TEXT TO YOU MAY ALSO LIKE TEXT
// ==================================================
function custom_related_products_text( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Related products' :
// Change text(More Products) as per your desihn
$translated_text = __( 'More Products', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'custom_related_products_text', 20, 3 );
This is tested in my dev site and it works but please note that there’s no guarantee that this would work on your end also. One possible reason is not copying the code completely and another is there might be other functions in your site that could cause conflicts. If that happens, you will need to hire a web developer to investigate such cases as we don’t have support for custom code.
Thanks.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.