This topic contains 0 replies, has 1 voice, and was last updated by Vlad Makarchuk 10 months, 3 weeks ago.
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
You must be logged in to reply to this topic.
TemplatesNext › Forums › Free Themes › i-craft Support › How to remove header from woocommerce shop page?
This topic contains 0 replies, has 1 voice, and was last updated by Vlad Makarchuk 10 months, 3 weeks ago.
Hi!
I succesfully removed header from all pages, but in the shop page it is still showing. You can see it on the screen (blue area with the text “Shop”).
I’ve tried different codes, such as:
1) .woocommerce #menu-header { display: none; }
2) add_filter( ‘woocommerce_show_page_title’ , ‘woo_hide_page_title’ );
/**
woo_hide_page_title *
Removes the “shop” title on the main shop page *
@access public
@since 1.0
@return void
*/
function woo_hide_page_title() {
return false;
}
But still nothing
You must be logged in to reply to this topic.