Archived topic
Removing a GP hook from a Blog Page
1 reply · Started by colin avis on March 30, 2015
Hi Tom, I have an issue where i have added a slider below the header in GP Hooks, This makes this now global across the site, although i would like to disable it for my blog page.
Here is the link to the page in question as it is ruining the grid of the blog page?
http://www.spectrumdating.co.uk/category/members/
Any ideas?
Hi Colin,
If you're only trying to hide it on the blog page, you can use these conditionals:
<?php if ( ! is_home() && ! is_archive() ) : ?>
Your shortcode in here
<?php endif; ?>
Then tick the "Execute PHP" option, and you should be good to go :)