Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created June 13, 2022 01:11
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/bc40e5c5e6e28d7ddbe45753ca675b81 to your computer and use it in GitHub Desktop.
Save KaineLabs/bc40e5c5e6e28d7ddbe45753ca675b81 to your computer and use it in GitHub Desktop.
Youzify - Disable BBpress CSS
<?php
/**
* Youzify - Disable BBpress CSS
*/
function yzc_disable_bbpress_css() {
// Remove Youzer CSS.
remove_action( 'wp_enqueue_scripts', 'youzify_bbpress_scripts' );
}
add_action( 'init', 'yzc_disable_bbpress_css', 10 );
@mAdorRahman
Copy link

It's not working in a Multisite environment. Even the bp-custom.php is not supported in a multisite environment! Can you fix it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment