Add the below code at the end of your theme’s functions.php file or you can also add the below code inside your site-specific plugin.
1 2 3 4 5 6 7 | if (class_exists('bbPress')) { add_action( 'wp_print_styles', 'deregister_bbpress_styles', 15 ); function deregister_bbpress_styles() { wp_deregister_style( 'bbp-default' ); } wp_enqueue_style( 'bbpress_css', plugins_url().'/bbpress/templates/default/css/bbpress.min.css'); } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.