Viewing 2 replies - 1 through 2 (of 2 total)
  • lifeloveanddirtydishes

    (@lifeloveanddirtydishes)

    Hi,

    I too have tried using the short code in my posts but it always puts the subscribe form at the top of the post when I really want it at the bottom of each post.

    https://lifeloveanddirtydishes.com

    Thanks

    This question has been asked a lot of times, very obvious issue, and no fix has been posted .. but I’ve come up with a workaround:

    Add this to your functions.php, and use a new shortcode: [sub]

    // Add Shortcode
    function custom_shortcode() {
    $subscriptionForm = \SimpleSubscribe\Developers::getSubscriptionForm();
    return $subscriptionForm;
    }
    add_shortcode( 'sub', 'custom_shortcode' ); //END
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change position of shortcode’ is closed to new replies.