• petefromhome

    (@petefromhome)


    Hi,

    So basically my issue is when people opt in to my list they get directed to this GR page => https://app.getresponse.com/add_subscriber.html and it looks super ugly.

    This is the code in the function.php
    // add GetResponse form action
    elseif($optinforms_email_solution == ‘optinforms_email_solution_option4’) {
    return “https://app.getresponse.com/add_subscriber.html”;
    }

    Since this is not a web form I’ve created at getresponse, I cannot set a custom thank you page…

    My question is: Is there any way to bypass their default page and redirect people to a custom url?

    Unfortunately the Getresponse Web Forms are not responsive!!!!!?? I was in shock when found it out!

    You can see on this page https://www.iangol.co.uk there are two optin forms… at the top is the one from getresponse the one below is Optin Form.

    Now they both look great, but the GR form is not responsive and yours take people to that ugly default thank you page.

    I was on the chat with them today and they were talking about some API and stuff…

    Is there any workaround this?

    Pete

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author FancyThemes

    (@fancythemes)

    Hi,

    We could add a filter in there which would allow you to change the “thank you page” URL to any URL you want.

    Basically the way it would work is you put a bit of code in your theme ( or child theme ), we will supply the code of course.

    Would that work?

    Thread Starter petefromhome

    (@petefromhome)

    Hi,

    Thanks for the super fast response!

    That would be perfect!

    Thank you so much!

    Best,

    Pete

    Plugin Author FancyThemes

    (@fancythemes)

    Hi Pete,

    You’re welcome.

    Great, the update will be released tomorrow.

    Thread Starter petefromhome

    (@petefromhome)

    Hi,

    Wahey!

    You guys are Awesome!

    Cheers, Pete

    Plugin Author FancyThemes

    (@fancythemes)

    Hi Pete,

    There’s another thing we need to do before releasing the update but there’s no need for you to wait, you can download the version with the fix you need here

    And this is the code you would add in the functons.php of your theme:

    function mytheme_optinforms_before_form_close() {
    
    	return '<input type="hidden" name="thankyou_url" value="https://yourwebsite.com" />';
    
    } add_filter( 'optinforms_before_form_close', 'mytheme_optinforms_before_form_close' );

    Just change the https://yourwebsite.com with the URL.

    Thread Starter petefromhome

    (@petefromhome)

    Hi Guys!

    Beautiful! It is working! ??

    Thanks a million for your time and help!

    You are a star!

    Cheers, Pete

    Thread Starter petefromhome

    (@petefromhome)

    Just one more suggestion…

    Maybe in later versions you can set the form, so once someone subscribed there would be a message appear on the submit button saying something like “SUBSCRIBED” or something…

    Getresponse does that… they have a green tick appearing on the submit button.

    Just an idea ??

    Thanks again for sorting this out for us!

    Cheers, Pete

    Plugin Author FancyThemes

    (@fancythemes)

    Hi Pete,

    You’re welcome.

    As for the button, will look into that.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Getresponse “issue”’ is closed to new replies.