Remove Disqus JavaScript from homepage
Hey WordPress friends,
I’m using the Disqus comment system plugin, which is working fine. My homepage is just a collection if recent posts and therefore not having the option to leave a comment (as desired).
Unfortunately, I still see that the Disqus plugin is rendering JavaScript output within the homepage and would like to get rid of this.
I've Tried the following but without luck. Any help is appreciated! Thanks
function block_disqus_count() {
if ( is_front_page())
remove_filter('output_count_js', 'dsq_output_count_js');
}
add_action( 'block_disqus_count' , 'block_disqus_count');