The answer is simple: when the custom post type is added, it doesn’t include “comment” as one of the supported features.
You may want to talk to the theme developer, or hack the code.
Add this /
‘supports’ => array( ‘title’, ‘editor’, ‘comments‘, ‘post-templates’),
I have tried this but nothing happens… any other trick
add this in your Template maybe :
<?php comments_template( ”, true ); ?>
OR
<?php comments_template(); ?>
OR enable comments manually on each single, at the bottom :
Allow comments
added this to template
<?php comments_template( ”, true ); ?>
enabled comments manually on each single, at the bottom :
Allow comments
still no comments. Here is the page where comment should appear http://btemplates.in/widgets/test
I appreciate your help
found it at last just place this code
<?php $withcomments = “1”; comments_template(); ?>
found it here http://ww.wp.xz.cn/support/topic/cant-show-comments-template-on-custom-post-type
(@hariharakumar)
11 years, 9 months ago
I have custom post types in my blog (BTemplates.in), but comments are not appearing below them. I dont know what to do please help me.