Someone at the @customizR theme support find the trick to resolve my issue, so, i’d only had to put this snippet-code :
add_filter(‘tc_show_comments’, ‘disable_comments_buddypress_pages’);
function disable_comments_buddypress_pages( $bool ){
if ( is_page() && is_buddypress() )
return false;
return $bool;
}
At my child-theme function.php;
This code will disable the comments on each buddypress pages, so, take care if you want to allow users to comment some buddypress pages this code won’t work for you 🙂
First, it’s not the same ‘comment’ as an article page comment, it’s not like this able users to comment those page, there’s just a previous comment list you know, i can’t able/disable comment on those page cause it’s not like comment but just a list with ancient comments on the entire site, it’s such different