Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author codegearthemes

    (@codegearthemes)

    For product category page:

    function codegear_hide_category_page_title( $title ) {
       if ( is_product_category() ) $title = false;
       return $title;
    }
    add_filter( 'woocommerce_show_page_title', 'codegear_hide_category_page_title' );

    For Shop Page

    function codegear_hide_shop_page_title( $title ) {
       if ( is_shop() ) $title = false;
       return $title;
    }
    add_filter( 'woocommerce_show_page_title', 'codegear_hide_shop_page_title' );
    Thread Starter harmonysteam

    (@harmonysteam)

    That seemed to work on the product pages, but I would also like it to work on all of my pages and product category pages.

    Theme Author codegearthemes

    (@codegearthemes)

    The feature is not available in the free version of the theme please use CSS display none property or upgrade to the premium version of the theme.

    Thread Starter harmonysteam

    (@harmonysteam)

    When I click on the upgrade link it takes me to a 404 error page

    Theme Author codegearthemes

    (@codegearthemes)

    Please use this link to upgrade https://tinyurl.com/5buf4tj2

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Grey Section with Breadcrumbs’ is closed to new replies.