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-
<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>