Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @kiziev ,

    You need to do the following steps:
    1) Add the following code to your Child Theme functions.php file:

    add_filter( 'sportspress_register_post_type_player', 'enable_players_comments' );
    function enable_players_comments( $post_type_args ){
    	$post_type_args[ 'supports' ][] = 'comments';
    	
    	return $post_type_args;
    }

    2) Check that each player has enabled Comments (i.e. https://snipboard.io/yfLX5F.jpg)

    Thanks,
    Savvas

    Thread Starter Kiziev Sergey

    (@kiziev)

    @savvasha Thank you! Resolved.

    Roch

    (@rochesterj)

    I’m glad it’s resolved!

    Please, let us know if you need anything else.

    Kind Regards,
    -Roch

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Allow comments on player pages’ is closed to new replies.