php - Show header only on shoppage Wordpress -
took me time find out working code show header above sidebar.
have problem want show header on shop-page , not on product pages.
i'm trying figure out need change?
add_action('woocommerce_before_main_content','before_main_content'); function before_main_content() { ? <img src="image url"> <?php } ?
thank guys answers :) 1 worked me :
function before_main_content() { if (is_shop()) { ?> <img src="image url"> <?php } } ?>
replace *** shop page name:
<?php if ( is_page('***')) { **insert header code here**; } ?>
this works me :)
Comments
Post a Comment