Displaying content based on category chosen

3 posts by 2 authors in: Forums > CMS Builder
Last Post: May 22, 2020   (RSS)

By daniel - May 21, 2020

Hi CommonSenseDesign,

You should be able to use an "if" statement something like this:

<?php if (!empty( $_REQUEST['product_category'] ) && $_REQUEST['product_category'] == 'Videofied'): ?>
 Your Text Here
<?php endif; ?>

Let me know if that helps, or if you have any other questions!

Thanks,

Daniel
Technical Lead
interactivetools.com

By CommonSenseDesign - May 22, 2020

Perfect! Thank you.