Created
June 23, 2014 15:15
-
-
Save tomhemsley/62d417cf6ce446c9d0d8 to your computer and use it in GitHub Desktop.
Fix for Barcci theme (YouTube & Vimeo selector)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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