Most embeds can be disabled via the “Auto-embed links” setting in:
Admin > Settings > Forums
You can also permanently unhook them:
remove_action( 'bbp_init', 'bbp_reply_content_autoembed', 8 );
remove_action( 'bbp_init', 'bbp_topic_content_autoembed', 8 );
Images are a bit trickier, as you’ll need to remove img
from the allowed-tags array:
add_filter( 'bbp_kses_allowed_tags', function( $tags = array() ) {
unset( $tags['img'] );
return $tags;
} );
Thank you so much this resolved the problem.