This is what I have tried with no luck yet.
function tribe_remove_customizer_style_tags() {
if ( class_exists( 'Tribe__Events__Pro__Customizer__Main' ) ) {
remove_action( 'wp_print_footer_scripts', array( Tribe__Events__Pro__Customizer__Main::instance(), 'print_css_template' ), 15 );
}
}
add_action( 'init', 'tribe_remove_customizer_style_tags' );
I also tried a simple
remove_action( 'wp_print_footer_scripts', 'print_css_template', 15 );
Sure it’s something simple missing. Appreciate your help on this.