Skip to content

Instantly share code, notes, and snippets.

@tomhemsley
Created June 23, 2014 15:15
Show Gist options
  • Save tomhemsley/62d417cf6ce446c9d0d8 to your computer and use it in GitHub Desktop.
Save tomhemsley/62d417cf6ce446c9d0d8 to your computer and use it in GitHub Desktop.
Fix for Barcci theme (YouTube & Vimeo selector)
/** Dequeue theme specific JS scripts from the YouTube and Vimeo tabs **/
function ms_dequeue_scripts() {
wp_dequeue_script( 'eye' );
wp_dequeue_script( 'utils' );
wp_dequeue_script( 'bg-cutom' );
}
add_action("metaslider_youtube_iframe", "ms_dequeue_scripts");
add_action("metaslider_vimeo_iframe", "ms_dequeue_scripts");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment