I updated my wordpress theme some days ago to the Ocean Mist 2.0 template.
Today I find out that Firestats was not working anymore with it, however it worked well with the previous version of Ocean Mist.
Reading the FAQ of Firestats I understood that the problem was that the new Ocean Mist 2.0 theme was not calling the function wp_head().
Indeed Firestats, to be able to track the visits to your blog, needs
“[...] a call to wp_head() in your theme header.php file. Look in the default theme for an example of how it should be. Also, it goes without saying that FireStats must have been activated from the plugins menu.”
Therefore I added the following line:
<?php wp_head(); ?>
in the file header.php just after the tag
<head>
Now everything is working perfectly!!!
