Simply, all you need to do is commenting a line in ‘content-archive-topic.php’ as shown below:
The file path is ‘..\wp-content\plugins\bbpress\templates\default\bbpress\content-archive-topic.php’ at around line number 30.
<?php bbp_get_template_part( ‘pagination’, ‘topics’); ?>
<?php bbp_get_template_part( ‘loop’, ‘topics’); ?>
<?php bbp_get_template_part( ‘pagination’, ‘topics’); ?>
Just comment the first line to avoid displaying top pagination link as:
<!—- ?php bbp_get_template_part( ‘pagination’, ‘topics’); ? —–>
<?php bbp_get_template_part( ‘loop’, ‘topics’); ?>
<?php bbp_get_template_part( ‘pagination’, ‘topics’); ?>