Enable comments on templates
To enable comments on pages using our templates, please add this to your child themes functions.php file
function presscore_templates_add_comments() {
comments_template( '', true );
add_action( 'presscore_after_loop', 'presscore_templates_add_comments', 30 );