Customize WordPress WooCommerce categories and tags title

I have a WordPress based website with the WooCommerce plugin installed.

On the single product pages, there is the product description, product images, as well as the categories and tags the item is listed under.

Read More

How can I change the ‘Categories’ and ‘Tags’ title/text to display as something else?

For example, change ‘Categories’ to ‘State’ and ‘Tags’ to ‘Suburb’?


enter image description here

Related posts

Leave a Reply

2 comments

  1. for quick rename anything in woo:

    add_filter('gettext',  'translate_text');
    add_filter('ngettext',  'translate_text');
    function translate_text($translated) {
        $translated = str_ireplace('Choose and option',  'Select',  $translated);
        return $translated;
    }