Hi
I love it that you guys created Disqus plugin for us 🙂
However , the comment system is not showing up on a custom post type I have.
I was wondering if its easy to add it also to that post type.
I tried using this code , but it didnt work :
add_filter( 'comments_template' , 'wpb_enable_disqus', 1 );
function wpb_enable_disqus($file) {
if ( 'loford' == get_post_type() )
add_filter('comments_template', 'dsq_comments_template');
return $file;
}