How to remove ( 0, 0 ) from forum page in bbpress [closed]

From my understanding, these are produced by the function bbp_list_forums(), as called in the template file bbpress/loop-single-forum.php. You should be able to copy that template into your theme and change the call to bbp_list_forums() as follows:

<?php bbp_list_forums( array( 'show_topic_count' => false, 'show_reply_count' => false ) ) ?>

See bbPress’s inline docs for bbp_list_forums() here: https://bbpress.trac.wordpress.org/browser/branches/plugin/bbp-includes/bbp-forum-template.php#L667