Hey, thank you for looking into this question.
It’s regarding the inline script injected in the page which loads count.js. I might be designed to load on homepages but I don’t want to load or include anything within my pages if it doesn’t have a purpose.
I Solved it by altering the file disqus.php. In function
function dsq_output_count_js() {
I’ve added the following check before the function tries to output the script
if ( ! is_front_page() ) { ?> <script type=”text/javascript”>
I hope this will be configurable in the future. or maybe i’m the only one that finds this disturbing.