How to Change the WooCommerce Shop Page Title?

By Shameem Reza
Picture of the author
Published on
Change the WooCommerce Shop Page Title

The title of your WooCommerce shop page plays a crucial role in defining your brand and guiding visitors. Whether you want to optimize it for SEO or simply match it to your branding, changing the shop page title is essential.

WooCommerce Shop Page Title
WooCommerce Shop Page Title

You can change the WooCommerce shop page title either from the WordPress settings or using a code snippet in your child theme’s functions.php file.

Change the WooCommerce Shop Page Title Using the WordPress Settings

Most easiest ways to change the WooCommerce shop page title is using the built-in WordPress settings. Here are the steps by step guide:

How to Change WooCommerce Shop Page Title?
How to Change WooCommerce Shop Page Title?
  1. Log in to your WordPress admin panel.
  2. From the sidebar, navigate to "Pages" and select "All Pages."
  3. Look for the "Shop" page and click on it.
  4. Once inside the page editor, you can directly edit the title at the top.
  5. After making changes, click the "Update" button to save the new title.
  6. Visit your shop page in a new tab to ensure the updated title is displayed.
Change Shop Page Title
Change Shop Page Title

However, as you noticed in the above screenshot, this change will not change the title shown on the browser tab. To accomplish this, you'll need to add a code snippet to your theme's functions.php.

Change the WooCommerce Shop Page Title Using code snippet

function shop_title( $title ) {
    if ( is_shop() && isset( $title['title'] ) ) {
        $title['title'] = apply_filters( 'the_title', get_the_title( get_option( 'woocommerce_shop_page_id' ) ) );
    }
    return $title;
}
add_filter( 'document_title_parts', 'shop_title' );

After adding the above custom code snippet, you will notice that the shop page title has been changed everywhere, including the browser tab.

Change WooCommerce Shop Page Title
Change WooCommerce Shop Page Title

Conclusion

Changing the WooCommerce shop page title is a simple yet effective way to enhance your online store's branding and user experience. Whether you prefer to tweak it through code or directly from the WordPress dashboard, these methods allow you to tailor the title to your specific needs.

Experiment with different titles to find the perfect fit for your WooCommerce shop, and don't forget to consider SEO best practices when crafting your new title.

Happy customizing!

Snnipet.

Hi there! Want to support my work?

Stay Tuned

Boost Your Skills On WordPres & WooCommerce!
The best articles, links and news related to CSS, JavaScript, front-end, WordPress and WooCommerce delivered once a week to your inbox.
Unsubscribe anytime. Your data is safe.