Home › Forums › Pro Support › Auto displaying WPSP List at end of post › Reply To: Auto displaying WPSP List at end of post
August 18, 2017 at 11:19 am
#2507
Participant
I’ve solved it – found something you answered in the GP Forums which has worked. I took the following advice to add the PHP code in the After Content section in GP Hooks
———-
To make sure it only shows up on single posts, wrap it in this conditional:
<?php if ( is_single() ) : ?>
[SHORTCODE HERE]
<?php endif; ?>
Then make sure Execute PHP is checked.