Hi there,
I have inserted a banner on the woocommerce shop page (www.avanaa.ca/en/shop) with shortcodes and
add_action('woocommerce_archive_description','custom_shop_before_main_content');
It only appears in main archive shop page because I use if ( is_shop() ) before inserting my shortcodes.
I would like to insert a different banner on each category archive page (e.g. http://www.avanaa.ca/en/product-category/gift-pack/). I tried
if (is_category( 'gift-pack' )
to target this page, but it doesn’t seem to work…
Thanks for the help!