Most of you must have seen me using the new Thesis 2 design on Best 2 Know and also Disqus Comments with it, but usually the Disqus comments does not properly work with Thesis 2, well it is pretty irritating that we install a new platform and try to improve everything, but the Disqus WordPress plugin unable to display Comments on the Posts or just display same comments on every posts
Well as far now I m Satisfied with the new Design and new Platform but the Disqus comments did take a time to get fixed, well the problem was actually pretty small, but I guess you might have heard it is the small things that takes time then the big things. Like that it took me sometime to fix it but it was fixed.
I even tried contacting the Disqus support thinking it was a problem from their side but it was my bad luck that they had the holiday for their support staff that day and it wasn’t going to be up for 3-4 upcoming days so I had to take the matters in my own hand, so I went in search of answer and then took the look at the source code and found out the problem was actually that thread ID
was not getting Registered it used to undefined
. So again went through the Plugins source code and found the solution to the problem.
Well without wasting anymore time let’s go and solve the Disqus Comment problem :
- Open
disqus.php
in the Plugin Editor - Search for the below code :
function dsq_identifier_for_post($post) { return $post->ID . ' ' . $post->guid; }
- Replace the above code with the below code :
function dsq_identifier_for_post($post) { global $post; return $post->ID . ' ' . $post->guid; }
- Click on Update File button
I guess this might have helped you to solve the Disqus comment not working Problem you have got your comment system up and running perfectly.
I have also found an Alternative to it is Disqus Comment box for thesis 2.
If you do not have Disqus comment then I guess you should give it a try it is really good and I m currently really happy with it.