Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Last active September 10, 2018 01:48
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/6e51bdbc2b568d7cc74a55382c0757e5 to your computer and use it in GitHub Desktop.
Save KaineLabs/6e51bdbc2b568d7cc74a55382c0757e5 to your computer and use it in GitHub Desktop.
Remove Kleo Default Buddypress Css
<?php
/**
* Remove Theme Default Buddypress CSS
*/
function youzer_remove_default_bp_css() {
wp_dequeue_style( 'bp-parent-css' );
wp_dequeue_style( 'kleo-bbpress' );
}
add_action( 'wp_enqueue_scripts' , 'youzer_remove_default_bp_css', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment