As you can see on the top right corner of Technically Personal (above the header), I have something like “767 Subscribers and Counting!!” That number is actually the coming from Feedburner. The usual Feedburner chicklet counters are boring and updated.
Few days back, I read an article on ThemeTation about How to implement Feedburner Text Counter without using any plugin whatsoever. It’s a simple and straight-forward tutorial which tweaks the Feedburner API to get the counter as a text and it worked as expected.
But then, over the next couple of days I observed that this converted text counter was showing 0 and this happened almost at the same time everyday. That is when i realized that the Feedburner counter gets reset to 0 before it gets updated with the latest value everyday. This bug is not restricted to the Text counter of Feedburner. Even the Feedburner chicklets face this issue. Normally this issue gets sorted out within a couple of hours but some times it persists and it would be embarrassing to show 0 subscriber count. The issue gets worsened if you use a caching plugin which caches the pages showing 0 subscriber count.
Have a look at the screenshot example above. Ironically, the post title of Pro Blog Design (which is one of my most favorite blogs) says “Get RSS Subscriber Count in Plain Text” and it shows 0 Subscribers (and the actual count is in excess of 4600!!)
How to Fix this 0 Subscribers Bug of Feedburner?
Assuming that you have followed ThemeTation’s approach (or something similar) to convert Feedburner Counter to Text, go to your Header.php or Sidebar.php (wherever you are displaying the Feedburner text counter) and look for the code which says
$fb = $xml->feed->entry['circulation'];
Just below this, add a line of code
$fc="XXX";
Replace XXX with a number which is realistically similar to your actual subscriber count. And again look for the code which says
echo $fb
and, replace that part with this
if ($fb=="0")
echo $fc;
else
echo $fb;
Needless to mention that this will be within the php tags.
That is it! Whenever the feed count value comes as 0, it will be replaced with the number you have defined. No more embarrassing moments!
What you think of this trick? Do you have a better and simpler fix? Let me know!


The problem is when you consider that your “Replace XXX with a number which is realistically similar to your actual subscriber count.” is much higher than it really is!
David leos last blog post..Bab.la – online dictionary
@David,
But if the intention is to cheat then one can directly “hardcode” the number, no need to code so much to get it from Feedburner 
That is true
And there is a way to cross check if the numbers are genuine or not.
http://feedproxy.google.com/~fc/TechnicallyPersonal should give the actual count. You can replace TechnicallyPersonal with any other blog’s feed name.
Raju what u said is right ,I recently visited a blog that is showing 24000 subscribers ,I doubted that and checked adding ~fc to feed address url, I found that blog has only 600 subscribers,that’s really cheating readers.
venkats last blog post..The Funny Flash Mind Reader Game
A better fix is to daily save the feedcount into the options table or into a cache file.
Before reading the new count, you should dump the old count in your $fc.
Ajays last blog post..Better Search v1.1 released
@Ajay,
Welcome to my blog. i am glad to see your comment. I understand why you prefer it to be cached and stored in the options table, but what I don’t understand is – if reading the new count happens only once a day? Only then your approach would work, if not it might cache and store even 0 or N/A . Hope you got my point.
The Feedburner count is updated only once a day. Hence, you should bother pulling the API only once a day, or you can run it for once every twelve hours. This is rather simple if you use the inbuilt WP-Cron or if you use the cache.
Using WP-Cron ensures that you don’t need to use a cache and the count is updated every 12/24 hours and saved in the db.
Another option is like I mentioned above.
Ajays last blog post..Better Search v1.1 released
Ohh, and thanks for the welcome. Have been reading the blog for a long long time now. Just thought I could comment on this one
Ajays last blog post..Better Search v1.1 released
Hmmn, I tried this hack in blog, but had this same problem of 0 count, Thanks for the solution
I will implement this soon in my blog..
Great post man! I will try it out too. Wish I could solve this problem with my chicklet coz I don’t have a better place for showing as text.
Asif Istiaks last blog post..10 Live Player | Stream Mobile Media