• Hello,

    hao i can turn on comment in single person ?

    In Single episode comment are working fine,

    in person section on comment are disabled.

    Please tell me how to do it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    Please note comment for single person is not available.

    Thanks.

    I had this problem before and was able to turn comments on for Persons. https://www.ads-software.com/support/topic/enable-comments-on-single-person-page/

    Paste the code below on your theme’s functions.php.

    /**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 );

    Change the number 27 depending on where you want the comments to appear within the page.

    • This reply was modified 1 year, 10 months ago by tristanjenner.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Comment in person’ is closed to new replies.