• Resolved JustJo

    (@justjo)


    I just downloaded your plugin and I have great hopes, although you don’t even have one review. I am having a problem that has been reported before: the code always shows on the left corner no matter where do I place it on the page.

    I don’t feel keen about giving you access to my site for obvious reasons but again, I am willing to give you a try and giving you a first rate if you help me do this without me having to figure it out.

    Also, are you planning on upgrading your plugin to make it compatible with the latest version of WordPress?

    Thanks!

    https://www.ads-software.com/plugins/ultimate-promo-code/

Viewing 5 replies - 1 through 5 (of 5 total)
  • kcsck

    (@kcsck)

    The plugin works fine, but I have the same problem… :_(

    I couldn’t find a solution yet. Do you think it’s about css?

    kcsck

    (@kcsck)

    OK, I’ve got it! This is how I solved it:

    Go to index.php in the plugin folder. At the end, you will find this:

    function Ultimate_promo_form($atts)
    {
    	 include 'ultimate_promo_form.php';
    }

    Just add ob_start(); before the include and $output = ob_get_clean();return $output; after it. This is the result:

    function Ultimate_promo_form($atts)
    {
     ob_start();
    	 include 'ultimate_promo_form.php';
    $output = ob_get_clean();
        return $output;
    }

    And that’s it! It worked fine for me. Hope this helps. ??

    Thread Starter JustJo

    (@justjo)

    YESSS!!! Thank you so much!!! I’ve spent all day trying to do it!

    Thread Starter JustJo

    (@justjo)

    Do you guys ever respond to the questions posted? This is supposed to be a support forum ran by CMSHelpLive and not by the users.

    Shouldn’t you stand by your product?

    Thread Starter JustJo

    (@justjo)

    Never mind, did it

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Form out of place’ is closed to new replies.