Hi,
Why aren’t the comments showing in Pages? Also, they’re not shown in the recent comments widget (for pages where comments were added before I switched to Enfold)
Hi,
Open the page.php file and look for this line (26):
get_template_part( 'includes/loop', 'page' );
Add this one just after it:
comments_template( '/includes/comments.php');
Final code:
get_template_part( 'includes/loop', 'page' );
comments_template( '/includes/comments.php');
Regards,
Josue
Perfect. Thanks