GetResponse opt-in form code help

7 replies
  • WEB DESIGN
  • |
I want to replace the "submit inquiry" button with my own submit graphic and can't quite figure how to get it linked so that the form will work. GetReponse Support does not offer that type of support other than to say that it is possible to do.

So I have come to the site of all knowledge - The Warrior Forum - I know someone out there has to have a simply answer short of just linking my graphic to the email addy for my list.

Anybody?

Thanks,

Mike Tansey
#code #form #getresponse #optin
  • Profile picture of the author Michael R.
    I assume you have the html code of the opt-in form. Then you should search for the following tag:

    <img src="...">

    "..." is the link to the image of the original submit button. Simply replace this with a link to your own submit button.

    If there is more than one image in the code, just copy the original links to the address bar of your browser and check which one is the submit button.
    {{ DiscussionBoard.errors[2058518].message }}
    • Profile picture of the author phxgolfer
      I can replace the graphic I just can't link it to the form to make it work as the GR "submit inquiry" button works.

      Thanks Michael but there is no image tag in the code to replace unfortunately.

      There has to be a way to do this.

      Somebody has to know this information

      Come on Warriors! Show me why this is the Greatest IM forum on the planet.

      Mike
      Signature
      FREE Download -- Special Report Guide to List Building -- FREE Download
      Explode Your Social Media Lists with ViralProfitList
      Traffic to Sink Your Teeth Into -- BloodSuckingTraffic
      {{ DiscussionBoard.errors[2059001].message }}
      • Profile picture of the author Susan Hope
        Mike

        I am assuming then that you picked the top code when you made your webform.

        If so, you need to go back into GR, click to see your list of webforms, once you locate the webform, click on "view" on the far right and this will bring up the page where you got your code from originally.

        Firstly, you need to select the 2nd set of code the HTML one.

        Secondly, this is an example of that code (not all of it, this is the end part):

        Code:
        <ul style="list-style: none; margin: 0; font-size: 12px; color: #7B7B7B; padding: 15px 30px 15px 30px; text-align: center;">
        
        </ul>
        <input type="hidden" name="confirmation_url" id="confirmation_url" value=""/>
        <input type="hidden" name="error_url" id="error_url" value=""/>
        <input type="hidden" name="campaign_name" id="campaign_name" value="mycustomwordpress"/>
        <input type="hidden" name="custom_ref" id="custom_ref" value=""/><hr style="height: 1px; border: 0; background-color: #F0F0F0; color: #F0F0F0; margin: 0 20px 0 20px;"/>
        <div style="text-align: center; padding-bottom: 18px; padding-top: 10px">
        <input id="webform_submit" style="cursor: hand; font-family: verdana; font-size: 18px; color: #FFFFFF; background-image: url(http://www.getresponse.com/images/common/templates/webforms/grey_button.png); border: 0; width: 140px; height: 33px; margin: 10px;" type="submit" value="Submit"/>
        <div style="color: #0000ff; margin-top: 10px; width: 100%; clear: both;">GetResponse <a href="http://www.getresponse.com/">Email Marketing</a></div>
        <div class="clearer"></div>
        </div>
        </div>
        </form>
        </div><script type="text/javascript">var el=document.getElementById("custom_http_referer");if(el != null){el.value = document.location};</script>
        The part I have put in bold and red above is the part you are interested in, (scroll the bar to see it) here it is again:

        http://www.getresponse.com/images/co...rey_button.png

        If you copy that URL into a browser window you will see it is the grey submit button.

        So once you have made your own to fit there, you need to host the image somewhere (upload to your WP media library, making a note of it's URL) and replace that URL above with the new URL.

        Hopefully that might work.

        Cheers
        Sue
        Signature
        One-to-One WordPress Coaching Service Available at Low Hourly Rate - Let the frustration end now! WordPress Installs, Theme Design, Site Tweaks & other WordPress services available
        Find me on Pinterest: PINTEREST
        {{ DiscussionBoard.errors[2059127].message }}
        • Profile picture of the author Michael R.
          OK, GetResponse uses CSS, sorry...
          {{ DiscussionBoard.errors[2059188].message }}
  • Profile picture of the author phxgolfer
    Susanne,

    I thank you for your assistance, it worked beautifully.

    Sorry to take so long to thank you!

    Mike
    Signature
    FREE Download -- Special Report Guide to List Building -- FREE Download
    Explode Your Social Media Lists with ViralProfitList
    Traffic to Sink Your Teeth Into -- BloodSuckingTraffic
    {{ DiscussionBoard.errors[2161660].message }}
    • Profile picture of the author Susan Hope
      Originally Posted by phxgolfer View Post

      Susanne,

      I thank you for your assistance, it worked beautifully.

      Sorry to take so long to thank you!

      Mike
      Your welcome

      Sue
      Signature
      One-to-One WordPress Coaching Service Available at Low Hourly Rate - Let the frustration end now! WordPress Installs, Theme Design, Site Tweaks & other WordPress services available
      Find me on Pinterest: PINTEREST
      {{ DiscussionBoard.errors[2161670].message }}
      • Profile picture of the author adi2010
        Hi,

        I know this post has been for a while, but I was searching for GR Opt-In html to use in my own form. I found here at least answer to gray button problem I asked GR support to provide me "clean" HTML for my own form and this is what they gave me:
        Code:
        <!--This first line is mandatory, this ensures that the information is being submitted to GetResponse-->
        <form action="http://www.getresponse.com/cgi-bin/add.cgi" method="post" accept-charset="UTF-8">
        <label for="subscriber_name">Name : </label><input id="subscriber_name" name="subscriber_name" type="text" value="" /><br><br/>
        <label for="subscriber_email">Email : </label><input id="subscriber_email" name="subscriber_email" type="text" value="" /><br><br/>
        
        <!--change the value on the following line to change the text that appears on the submit button-->
        <input type="submit" value="Subscribe" />
        <input type="hidden" name="error_url" id="error_url" value=""/>
        <!--change the value of this field to change the page that people are directed to after filling out the form-->
        <input type="hidden" name="confirmation_url" id="confirmation_url" value=""/>
        <!--change the value of the following line to control which campaign the form submits to, this must be exactly as it is written in your account-->
        <input type="hidden" name="campaign_name" id="campaign_name" value="your_campaign_name"/>
        <input type="hidden" name="custom_ref" id="custom_ref" value=""/>
        </form>
        My question is, how others tweak html that allows them get results they want without form made on GR admin? More clear, how to go about own opt-in form? For instance people have on Facebook fun pages?

        I will very appreciate your help
        {{ DiscussionBoard.errors[3130609].message }}

Trending Topics