Making a Template for a CPT created by a plugin

The plugin is using a filter on the_content in line 300 of /includes/class-bigbluebutton.php

   // Display join room form.
            $this->loader->add_filter( 'the_content', $plugin_public, 'bbb_room_content' );

So you can probably add the following to your functions.php:

remove_filter( 'the_content', 'bbb_room_content' );