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

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - Bypass Geo Redirect for specific directories -

php - .htaccess mod_rewrite for dynamic url which has domain names -