Hi All,
Is it possible to have comments underneath portfolio items? I`m using disqus and would like to have it that way. Thank you..
Unfortunately this didn`t do the trick
get_template_part( ‘includes/loop’, ‘portfolio-single’ );
comments_template( ‘/includes/comments.php’);
and I`m to much of a newbie to edit things.. can a mod help me out?
Thank you!
Hey!
Do you use an advanced layout (template builder) on the portfolio page? If yes you can’t add comments to the portfolio page because the template builder doesn’t support a comment form. If not you can modify /wp-content/themes/enfold/single-portfolio.php to support comments – open up the file and replace
get_template_part( 'includes/loop', 'portfolio-single' );
with
get_template_part( 'includes/loop', 'portfolio-single' );
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');
Cheers!
Peter
tnx that is great!