How to Add a DIV in Woocommerce Shop Page only

I’d like to add a DIV under the title of my Shop page, but ONLY my main shop page. I added some code in ” archive-product.php ” but then it display the code on every shop page.

In fact i just need a DIV saying ” choose a category below ” on the main Shop Page.

Best Answer

You can add that div conditionally like the following and then the div will be shown only on shop page

[php]if ( is_shop() ) {
echo ‘<div>Choose a category below</div>’;
}[/php]

Leave a Comment