Site logo

Archived topic

Hook showing on homepage page as well

3 replies · Started by Chris on July 31, 2018

Viewing posts 1–4 of 4

Hi, sorry if this is a noob question but this is my first time working with hooks.

I want to add an optin after my blog content. But when I add the shortcode for the optin form to the "After Content" box in the Hooks section it's also added to every blog excerpt on the homepage.

What setting or step am I missing?

Note: I don't have the hook active on my blog right now

Hi Chris,

each of the blog posts is an article with its own content, hence why it appears there.
In the current hooks you can wrap your shortcode in some PHP like so:

<?php if ( is_single() ) : ?>
    YOUR SHORTCODE IN HERE
<?php endif; ?>

And check the Execute PHP box.

GP 1.7 is about to release which will make this really simple. Release candidate can be downloaded if you're interested.

Wow this support is amazing, thanks David, works like a charm!

Glad to hear I could help. :)

This archived topic is closed to new replies.