Skip to content

Instantly share code, notes, and snippets.

@elimn
Last active July 2, 2019 07:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elimn/50cc4ac8b56cc2809bbc48e7c7e3b461 to your computer and use it in GitHub Desktop.
Save elimn/50cc4ac8b56cc2809bbc48e7c7e3b461 to your computer and use it in GitHub Desktop.
MT | TEC | Remove the Tribe Customier css <script> from footer
<?php
/**
* Remove the Tribe Customier css <script>
*/
function tribe_remove_customizer_css(){
if ( class_exists( 'Tribe__Customizer' ) ) {
remove_action( 'wp_print_footer_scripts', array( Tribe__Customizer::instance(), 'print_css_template' ), 15 );
}
}
add_action( 'wp_footer', 'tribe_remove_customizer_css' );
@Sandstedt
Copy link

This doesn't work anymore with the new version of Events Calendar (4.6.x) using tribe_asset() function to load all assets.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment