Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created June 19, 2018 15:41
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/3ccf39949f05e31c1b2f3c94dc8ecc37 to your computer and use it in GitHub Desktop.
Save KaineLabs/3ccf39949f05e31c1b2f3c94dc8ecc37 to your computer and use it in GitHub Desktop.
MyArcade Theme Fix
<?php
/**
* Remove Theme Default Buddypress Files
*/
function youzer_remove_default_bp_files() {
if ( is_buddypress() ) {
wp_dequeue_style( 'mt-BuddyPressIntegration' );
wp_dequeue_script( 'myarcadetheme-general' );
}
}
add_action( 'wp_enqueue_scripts' , 'youzer_remove_default_bp_files', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment