• Resolved kristinubute

    (@kristinubute)


    Hi

    HOW do we RENAME the “RELATED PRODUCTS” title?

    My client wants a different name rather than the standard “RELATED PRODUCTS” title.

    Something like “You may also like ..”
    How can I achieve this ?

    Thanks
    Kristin

Viewing 1 replies (of 1 total)
  • Plugin Support ricardometring

    (@ricardoa8c)

    Hi there,

    To change a translatable string, you may either use a plugin such as Translate Words to change the string directly, or use a filter:

    add_filter( 'gettext', 'translate_woocommerce_strings', 10, 3 );
      
    function translate_woocommerce_strings( $translated, $untranslated, $domain ) {
        if (
    		! is_admin() &&
    		'woocommerce' === $domain &&
    		'Related products' === $translated
    	) {
    		$translated = 'You may also like...';
    	}
    	return $translated;
     
    }

    You may add this filter with a plugin such as Code Snippets.

Viewing 1 replies (of 1 total)
  • The topic ‘HOW do we RENAME the “RELATED PRODUCTS” title?’ is closed to new replies.