I want to add the COMMENT area to regular page post (not just the blog)
so people can post comments in the individual pages.
is this possible?
I want to add the COMMENT area to regular page post (not just the blog)
so people can post comments in the individual pages.
is this possible?
Hey,
open up page.php and replace:
get_template_part( 'includes/loop', 'page' );
with:
get_template_part( 'includes/loop', 'page' );
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');thank you so much for the info, I this will work great, but i forgot to mention that i only need it on ONE particular page, not in all of our pages in the site,
is there a way to turn this feature on only for one page?
You can use the is_page conditional tag: http://codex.wordpress.org/Function_Reference/is_page if you'd like to show the comments on a certain page (id) only.
Hey,
Is it possible to turn on the comments for Portfolio Entries rather than Page Posts?
Thanks,
thanks dude, i will try it.
You must log in to post.