Feedburner Issue
As of the time of this post, I followed the correct instructions for updating for Google Feedburner and coding my theme. I'm still getting an error when I test it saying that "The feed does not have subscriptions by email enabled" - Yes, I've checked, I do and it worked before this change. What am I doing wrong?
My code is:
<form id="subscribe" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><input type="text" value="Enter your email address..." id="subbox" onfocus="if (this.value == 'Enter your email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter your email address...';}" name="email"/><input type="hidden" value="<?php $feedburner_id = get_option('revlifestyle_feedburner_id'); echo $feedburner_id; ?>" name="name="uri"/><input type="hidden" value="eNews Subscribe" name="title"/><input type="submit" value="GO" id="subbutton" /></form>
|