Add this code to your WordPress theme’s Function to add Ads or anything after your bbPress Topic.
//Ads After topic
add_action( 'bbp_template_after_replies_loop', 'rew_other_topics' );
function rew_other_topics () {
$topic_id = bbp_get_topic_id() ;
$forum_id = bbp_get_topic_forum_id($topic_id) ;
echo 'Ads go here';
}
Just put it in this part of the code between the apostrophes:
echo 'Ads go here';