Archived topic
WooComerce Shop site: Page header not displayed
2 replies · Started by Thomas on April 6, 2020
Hi,
I've spent a couple of days solving this issue: I have a Custom Page header for all post-types (also products). For every content on https://www.bambuetta.com this setup works except the WooComerce - Shop site (https://www.bambuetta.com/shop).
Long story shop: How can I setup a Page Header to work with WooComerce Shop - Site:
Things I have already done:
-Setup meta - settings in shop page
-Setup Page header in global locations (products...)
-delete all custom filters and hooks
Thanks a lot for any hints
Found the solution:
function bambuetta_pageheader_id($id) {
if ( is_shop() ) {
return 2132;
}
}
add_filter( 'generate_page_header_id','bambuetta_pageheader_id');
Glad you found the solution :)