• Resolved willmorcos

    (@willmorcos)


    Hello

    The name page name is not appearing in my browser tab when I am on the Shop page?

    Thank you.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, willmorcos

    You can use the below code to change the title of Woocommerce shop page. Paste the below code in code snippets plugin:

    function wp_head_wpaction0() {
        if (is_shop()) {
            ?>
            <title>Shop</title>
        <?php
        }
    }
    
    add_action('wp_head', 'wp_head_wpaction0', 0);

    * Edit the Shop to your own text if required in the above in b/w <titlel> tag

    Let me know did it work!

    Thanks

    Thread Starter willmorcos

    (@willmorcos)

    Hello Imraj, where is the snippets plugin? Thank you.

    Hi, willmorcos

    If you have not installed, please install the Code Snippets plugin and add the above code in it.

    Let me know if have any confusion!

    Thanks

    Thread Starter willmorcos

    (@willmorcos)

    Amazing Imraj! Thank you once again for your advice!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Page name in browser tab’ is closed to new replies.