Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created October 10, 2019 15:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/b01070a34aea9512dcba6761045878eb to your computer and use it in GitHub Desktop.
Save KaineLabs/b01070a34aea9512dcba6761045878eb to your computer and use it in GitHub Desktop.
Motors Theme Fix.
<?php
/**
* Motors Theme Fix.
*/
function yzc_motors_theme_fix() {
if ( is_buddypress() ) {
wp_dequeue_script( 'stm-select2-js' );
wp_deregister_script( 'stm-select2-js' );
}
}
add_action( 'wp_enqueue_scripts' , 'yzc_motors_theme_fix', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment