Site logo

Archived topic

CHANGE STRINGS

3 replies · Started by antonio on February 24, 2022

Viewing posts 1–4 of 4

hI THERE
is there an option to change the strings?
i need to swap may be interested in with related products just the text in the product page
https://ibb.co/YD0fr3N

Hi there,

you can use these PHP Snippets:

add_filter('woocommerce_product_related_products_heading',function(){
   return 'Your related product text';

});

add_filter('woocommerce_product_upsells_products_heading',function(){
   return 'Your interested in text';

});

SHOULD I PUT IN FUNCTIONS?

This archived topic is closed to new replies.