Advertisement
BakerMan

Conditionally remove select2 (community 1.0.5 - htchatter)

May 6th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function maybe_remove_selectbox_script() {
  2.     $handle = 'select2-handle'; // Check with your theme vendor to find out the actual handle
  3.     if (tribe_is_community_edit_event_page()) wp_dequeue_script($handle);
  4. }
  5.  
  6. add_action('wp_enqueue_scripts', 'maybe_remove_selectbox_script', 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement