Think i’ve got a fix. Edit the function on functions.php line 1369 to:
function disqus_count($echo = true) {
$options = get_option('sf_supreme_options');
$disqus_shortname = $options['disqus_shortname'];
global $post;
if ($echo) {
echo '<a class="disqus-count" href="'. get_permalink() .'#disqus_thread" data-disqus-identifier="'.$disqus_shortname.'-'.$post->ID.'""></a>';
} else {
return '<a class="disqus-count" href="'. get_permalink() .'#disqus_thread" data-disqus-identifier="'.$disqus_shortname.'-'.$post->ID.'"></a>';
}
}
That should fix it.
Let me know.
– Ed