Advertisement
Guest User

Remove Ajax from The Events Calendar Pagination on Month, Li

a guest
Aug 27th, 2014
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /*
  2. * Remove Ajax from The Events Calendar Pagination on Month, List, and Day Views
  3. * @3.7
  4. *
  5. */
  6. function events_calendar_remove_scripts() {
  7. if (!is_admin() && !in_array( $GLOBALS['pagenow'], array( 'wp-login.php', 'wp-register.php' ) ) ) {
  8.  
  9. wp_dequeue_script( 'tribe-events-calendar');
  10. wp_dequeue_script( 'tribe-events-list');
  11. wp_dequeue_script( 'tribe-events-ajax-day');
  12.  
  13. }}
  14. add_action('wp_print_scripts', 'events_calendar_remove_scripts' , 10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement