• Resolved xtensions

    (@williamews)


    Hi. I have used “Permanent Link” options to change the word “product” to “business” in Woocommerce because I’m using it to build a directory. However, the word “Product” still shows in some areas in “WC Frontend Manager”. Any suggestion to change the words. Please check screenshot: https://prnt.sc/twizsz

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Please add this snippet to your site for the purpose-

    function wcfm_custom_0908_translate_text( $translated ) {
    	$translated = str_ireplace( 'Product', 'Business', $translated );
    	$translated = str_ireplace( 'product', 'business', $translated );
    	return $translated;
    }
    add_filter('gettext', 'wcfm_custom_0908_translate_text');
    add_filter('ngettext', 'wcfm_custom_0908_translate_text');

    Add custom code(s) to your child theme’s functions.php
    In case you do not have child theme then add those using this plugin – https://wordpress.org/plugins/code-snippets/

Viewing 1 replies (of 1 total)
  • The topic ‘Change the Word “Product” to Another Word’ is closed to new replies.