Prevent Disqus from loading
Yes, question and answer are CPT. Just disable Disqus for question and answer CPT.
Try this:
add_filter( 'comments_template' , 'my_block_disqus', 1 ); function my_block_disqus($file) { if ( 'question' == get_post_type() || 'answer' == get_post_type() ) remove_filter('comments_template', 'dsq_comments_template'); return $file; }
Jef_Vantongerloo commented
Seems like it does work.
I was looking at a cached version.
Jef_Vantongerloo commented
Can u check please of it is a browser problem of mine, but the plugin images are not loaded for me.
Rahul Aryan commented
Its due to cloudflare minify. turn that off. or try in development mode.
Jef_Vantongerloo commented
I tried in development mode, but still no good.
Firefox and Chrome do not work, Internet Explorer no problem.
Tried this allready, but does not work