I took a look at the plugin’s codes and I found that the template for single person doesn’t have any code that calls for the comments_template. After a lot of trials and errors, I came up with this code, which I added to my child theme’s functions.
/**Single Person Comments Tab**/
if ( ! function_exists( 'masvideos_single_person_comments' ) ) {
function masvideos_single_person_comments() {
?>
<div class="single-person-comments">
<?php comments_template(); ?>
</div>
<?php
}
}
add_action( 'masvideos_after_single_person', 'masvideos_single_person_comments', 27 );
Now I just need to figure out how to enable comments by default for each new person added.