Hi,
Thanks for using our plugins. I can help out here.
I created this coding to prevent the javascript and css from being loaded:
add_action( 'wp_enqueue_scripts', 'tribe_disable_this_week_scripts', 20 );
function tribe_disable_this_week_scripts() {
wp_dequeue_script( 'tribe-this-week' );
wp_dequeue_style( 'widget-this-week-pro-style' );
wp_dequeue_style( 'tribe_events-widget-this-week-pro-style' );
}
Add that to your theme’s functions.php and that should fix it.
It worked in my test site. Let me know if it works for you.
Cheers