I want to add the following php/shortcode to my post template so it appears in every page. <?php do_shortcode('[gravityform id="3" name="Subscribe"]'); ?> Where can I find the post template? I am using Genesis/News.
I want to add the following php/shortcode to my post template so it appears in every page. <?php do_shortcode('[gravityform id="3" name="Subscribe"]'); ?> Where can I find the post template? I am using Genesis/News.
Try adding 'echo' before 'do_shortcode'.
<?php echo do_shortcode('[gravityform id="3" name="Subscribe"]'); ?>