Site logo

Archived topic

Adding text at the bottom of categories

1 reply · Started by Maria on July 7, 2018

Viewing posts 1–2 of 2

I would like to add text at the bottom of woo commerce categories below the products (for example on this page), different text for different categories. Is that possible? Or is there a plugin or code?

Hi Maria,

you could use GP Hooks and add a Conditional Tag like so:

<?php if ( is_product_category( 'category_slug' ) ) : ?>
    <div class="grid-container">
    This Content will ONLY show on the categories that match the category_slug
    </div>
<?php endif; ?>

You would need to write one for each of the categories. If you are willing to wait a week or so then GP 1.7 (currently in Beta) will allow you to do this without writing code :)

https://generatepress.com/gp-premium-1-7/

This archived topic is closed to new replies.