Pre-loading Feedburner Verify Email Window

Discussion in 'Programming' started by eagleout, Jun 30, 2008.

  1. #1
    I have a new site with a Feedburner email subscription field that calls the Feedburner verify email window, but the static email field that the user fills in on the site is not copied to the Feedburner verify popup window. I'm missing something in the code that is escaping me for some reason.

    Here's the code:

    <div class="subscribe">
    <span class="rss"><a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('template_url'); ?>/images/rss.gif"></img></a></span>

    <div class="subscribeform">
    <p>Subscribe via Email </p>
    <form action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=xxxxxxx', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">

    <input type="hidden" value="http://feeds.feedburner.com/~e?ffid=xxxxxxx" name="url"/>
    <input type="hidden" value="Blah Blah Blog" name="title"/>
    <input type="text" value="" class="input" />
    <input type="hidden" name="loc" value="en_US"/>
    <input type="submit" value="Subscribe" />

    </form>
    </div>
    </div>

    It's just the basic Feedburner protocol for registering a user to receive email feeds, and it works, but the user has to enter an email address twice instead of having it pre-loaded in the verify window.

    Any suggestions?

    Thanks-
     
    eagleout, Jun 30, 2008 IP
  2. kmap

    kmap Well-Known Member

    Messages:
    2,215
    Likes Received:
    29
    Best Answers:
    2
    Trophy Points:
    135
    #2
    <div class="subscribe">
    <span class="rss"><a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('template_url'); ?>/images/rss.gif"></img></a></span>

    <div class="subscribeform">
    <p>Subscribe via Email </p>
    <form action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=xxxxxxx', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">

    <input type="hidden" value="http://feeds.feedburner.com/~e?ffid=xxxxxxx" name="url"/>
    <input type="hidden" value="Blah Blah Blog" name="title"/>
    <input type="text" value="" class="input" name="email"/>
    <input type="hidden" name="loc" value="en_US"/>
    <input type="submit" value="Subscribe" />

    </form>
    </div>
    </div>
     
    kmap, Jun 30, 2008 IP
  3. eagleout

    eagleout Active Member

    Messages:
    221
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    51
    #3
    RESOLVED. Thank you!
     
    eagleout, Jun 30, 2008 IP
  4. pmore

    pmore Guest

    Messages:
    90
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thank you very much Kmap!
     
    pmore, Nov 19, 2008 IP