Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Remove Ajax from The Events Calendar Pagination on Month, List, and Day Views
/*
* Remove Ajax from The Events Calendar Pagination on Month, List, and Day Views
* @4.0.6
*
*/
function events_calendar_remove_scripts() {
if (!is_admin() && !in_array( $GLOBALS['pagenow'], array( 'wp-login.php', 'wp-register.php' ) ) ) {
wp_dequeue_script( 'the-events-calendar');
wp_dequeue_script( 'tribe-events-list');
wp_dequeue_script( 'tribe-events-ajax-day');
}}
add_action('wp_print_scripts', 'events_calendar_remove_scripts' , 10);
add_action('wp_footer', 'events_calendar_remove_scripts' , 10);
@dasmurphy
Copy link

This is awesome and helped me! Thanks for the snippet.

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