WooCommerce: Hide “Shop” Title @ WooCommerce Shop

There are many snippets on the internet but many are out of date… so this is how to completely hide the Shop Page title in WooCommerce (plus: how to hide the title on WooCommerce Category and Tag pages). Enjoy!

How to Remove the WooCommerce Shop Page title

PHP Snippet 1: Remove Title @ WooCommerce Shop Page

/**
 * @snippet       Remove shop page title - WooCommerce Shop
 * @how-to        Get CustomizeWoo.com FREE
 * @author        Rodolfo Melogli
 * @compatible    WooCommerce 6
 * @community     https://businessbloomer.com/club/
 */

add_filter( 'woocommerce_show_page_title', 'bbloomer_hide_shop_page_title' );

function bbloomer_hide_shop_page_title( $title ) {
	if ( is_shop() ) $title = false;
	return $title;
}

PHP Snippet 2: Remove Title @ WooCommerce Product Category Pages

/**
 * @snippet       Remove cat page title - WooCommerce Cat pages
 * @how-to        Get CustomizeWoo.com FREE
 * @author        Rodolfo Melogli
 * @compatible    WooCommerce 6
 * @community     https://businessbloomer.com/club/
 */

add_filter( 'woocommerce_show_page_title', 'bbloomer_hide_cat_page_title' );

function bbloomer_hide_cat_page_title( $title ) {
	if ( is_product_category() ) $title = false;
	return $title;
}

PHP Snippet 3: Remove Title @ WooCommerce Product Archive Pages (Shop, Category, Tag, etc.)

/**
 * @snippet       Remove page title from all WooCommerce archive pages
 * @how-to        Get CustomizeWoo.com FREE
 * @author        Rodolfo Melogli
 * @compatible    WooCommerce 6
 * @community     https://businessbloomer.com/club/
 */

add_filter( 'woocommerce_show_page_title', '__return_null' );

Where to add custom code?

You should place custom PHP in functions.php and custom CSS in style.css of your child theme: where to place WooCommerce customization?

This code still works, unless you report otherwise. To exclude conflicts, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again: WooCommerce troubleshooting 101

Related content

  • WooCommerce: Disable Variable Product Price Range $$$-$$$
    You may want to disable the WooCommerce variable product price range which usually looks like $100-$999 when variations have different prices (min $100 and max $999 in this case). With this snippet you will be able to hide the highest price, and add a “From: ” prefix in front of the minimum price. At the […]
  • WooCommerce: Hide Price & Add to Cart for Logged Out Users
    You may want to force users to login in order to see prices and add products to cart. That means you must hide add to cart buttons and prices on the Shop and Single Product pages when a user is logged out. All you need is pasting the following code in your functions.php (please note: […]
  • WooCommerce Visual Hook Guide: Archive / Shop / Cat Pages
    I’ve created a visual HTML hook guide for the WooCommerce Archive Page (which is the same page for the Shop, Category, Tag pages). This visual guide belongs to my “Visual Hook Guide Series“, that I’ve put together so that you can find WooCommerce hooks quickly and easily by seeing their actual locations (and you can […]
  • WooCommerce: Add Second Description @ Product Category Pages
    In terms of SEO, if you’re trying to rank your product category pages, you really need to make the most of the default WooCommerce product category “description” and “thumbnail”. Most themes, if compatible with WooCommerce, will show this content right below the product category name and above products. Nothing new so far. But what if […]
  • WooCommerce: Hide Prices on the Shop & Category Pages
    Interesting WooCommerce customization here. A client of mine asked me to hide/remove prices from the shop page and category pages as she wanted to drive more customers to the single product pages (i.e. increasing the click-through rate). As usual, a simple PHP snippet does the trick. I never recommend to use CSS to “hide” prices, […]

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza. Follow @rmelogli

10 thoughts on “WooCommerce: Hide “Shop” Title @ WooCommerce Shop

  1. Unfortunately it also doesn’t work for me. Ive tried to hook into “woocommerce_before_main_content”, “woocommerce_archive_description” and “woocommerce_show_page_title” all day but nothing shows up. All other parts of the woocommerce structure can be edited no issue.
    Could it be related to some special permalink settings? Its the only thing I can imagine at this point.

    1. Does it work with a different theme?

  2. it’s not working.

    1. Even if you try with a different theme?

      1. Hi i need some assistance with this on my shop also , i would prefer to have the woocommerce page titles moves down but if this cannot be achieved i think that removing it will be okay also

        1. Which snippet did you try?

  3. Hi Rodolfo!
    Yes! It works.
    But on the pages remain

    <header class="woocommerce-products-header"></header>

    That is, deleting the “Shop” title should be followed by editing the archive-product.php template.
    I think that it would be more correct to change the Title, and not delete it.

    add_filter( 'woocommerce_page_title', 'bbloomer_shop_title' );
    function bbloomer_shop_title($page_title) {
    	$page_title = 'My Works';
    	return $page_title;
    }
    
    1. Sure, thanks about that!

  4. Hi
    Thanks for the code.
    It works on the shop page, but not on the other because I need to add som br tags to move down products a little. But the category pages are created in runtime so I can’t add br them. So the result is that a part of the first row of articles are hidden under the menu and header. I use a theme called Shopisle.

    1. Hi Peter, maybe you can use some CSS there instead?

Questions? Feedback? Customization? Leave your comment now!
_____

If you are writing code, please wrap it like so: [php]code_here[/php]. Failure to complying with this, as well as going off topic or not using the English language will result in comment disapproval. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining the Business Bloomer Club to get quick WooCommerce support. Thank you!

Your email address will not be published. Required fields are marked *