Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Last active February 3, 2020 10:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/50f4a50c199b87883363b34e44901a79 to your computer and use it in GitHub Desktop.
Save KaineLabs/50f4a50c199b87883363b34e44901a79 to your computer and use it in GitHub Desktop.
Bimber Theme Fix
<?php
/**
* Remove Bimber Theme Default Buddypress CSS
*/
function yz_disable_bimber_theme_buddypress_css() {
return false;
}
add_filter( 'bimber_bp_load_css', 'yz_disable_bimber_theme_buddypress_css' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment