-
Website
http://blog.disqus.com/ -
Original page
-
Subscribe
All Comments -
Community
-
Top Commenters
-
donnacha | WordSkill
37 comments · 12 points
-
Jason
164 comments · 22 points
-
Daniel Ha
2198 comments · 405 points
-
Rob Loach
45 comments · 29 points
-
goodbloke01
95 comments · 1 points
-
-
Popular Threads
-
Disqus: The Official Blog - Stocking Stuffers: Blogger Sync, Improved Reactions and Spam Reporting.
18 hours ago · 4 comments
-
Disqus: The Official Blog - Vote + Comment on your Favorite X-mas flick at BBC's Radio Times!
1 week ago · 10 comments
-
Disqus: The Official Blog - Welcome AllThingsD to the Disqus Community!
2 weeks ago · 23 comments
-
Disqus: The Official Blog - Please Welcome paidContent to the Disqus Community!
2 weeks ago · 13 comments
-
DISQUS | Service Status - Everything is running normal
1 week ago · 7 comments
-
Disqus: The Official Blog - Stocking Stuffers: Blogger Sync, Improved Reactions and Spam Reporting.
I put <?php wp_footer(); ?> after <?php get_footer(); ?> and before the <body> in each of:
index.php
page.php
single.php
works now!
Take a look here: http://disqus.com/faq/#faq-17
Thanks
My website is julianmoeller.dk.
In disqus.php, I changed dsqs_wp_footer to not check if it was a single post.
That made the comment-count show up on single posts as well.
My theme already had the appropriate calls in it to satisfy the advice at http://disqus.com/faq/#faq-17
thanks a lot daniel..
regards,
Essay
<?php comments_popup_link('0', '1', '%'); ?>
and
<?php comments_number('zero', 'one', 'more'); ?>
but i cannot get the number to show on singles, or my front page, ..except for the very first article !!
Any help would be greatly apreciated
www.thecommentfactory.com
Here's what I changed, specifically, to get comment counts to work on my single post pages:
1) Go to your PLUGIN folder in Wordpress; then to the DISQUS plugin folder.
2) Find the disqus.php file -- open it in your text editor of choice (I recommend Notepad++)
3) Look for this section of code around line 272:
function dsq_comment_count() { ...
} else if ( (is_single() || is_page() || $withcomments || is_feed()) ) {
Change the second line to:
} else if ( (is_page() || $withcomments || is_feed()) ) {
4) Upload the disqus.php file back on to your server!
If your WP isn't showing comment numbers on the single post pages from Disqus -- this should work!
Basically -- just delete out the (is_single() part of it entirely.
Dunno' what this does but it seems to work!