Feedburner issue when you go to subscribe via email to your feeds the following error appears,
First of all you need to signup to Feedburner and burn your feed.
Once you have done that click on the Publicize tab,
Then click on Email Subscriptions,
Copy the generated code and paste it into a text editor,
My WordPress theme has an RSS email subscription component in the footer (yours may be different),
Go to Appearance > Editor in WordPress,
As my RSS email subscription component is in the footer, I need to edit footer.php (yours may be different),
Next, I found the following piece of code in my footer.php file,
-------------------------------------------------------------------------------------------------------------------------
onsubmit=”window.open(‘http://feedburner.google.com/fb/a/mailverify?uri=<?php
echo get_option(‘feedmail’); ?>’, ‘popupwindow’,
‘scrollbars=yes,width=550,height=520′);return true”>
--------------------------------------------------------------------------------------------------------------------------.
Then went to my Feedburner code and copied the following,
----------------------------------------------------------------------------------------------------------------------------
onsubmit=”window.open(‘http://feedburner.google.com/fb/a/mailverify?uri=thesocialmediaguide’,
‘popupwindow’, ‘scrollbars=yes,width=550,height=520′);return true”>
----------------------------------------------------------------------------------------------------------------------------.
Then copied this Feedburner code and pasted it over the code in the footer.php file.
.
So that it the first bit of copying and pasting out of the way.. one more to go..
.
Then found the following piece of code in my footer.php file,
<input
type=”hidden” value=”<?php echo get_option(‘feedmail’); ?>”
name=”uri”/><input type=”hidden” name=”loc” value=”en_US”/>
.
Then went to my Feedburner code and copied the following,
<input type=”hidden” value=”thesocialmediaguide” name=”uri”/><input type=”hidden” name=”loc” value=”en_US”/>
.
I then copied this Feedburner code and pasted it over the code in the footer.php file.
.Click on <Update file> to save the changes.
Go back to your site to test everything works.
Enter your email address to subscribe,
No comments :
Post a Comment