remove ccs and js bbpres from non forum pages

Posted in: Newspaper
Post count: 268

hello I am trying to remove the css and js bbPress from not forum pages

wp-content/plugins/bbpress/templates/default/css/bbpress.css?ver=4.6.3′
/wp-content/plugins/bbpress/templates/default/js/editor.js?ver=2.5.7-5693

I tried to put follow code in the functions.php file of newspaper but eliminates only the js.
any suggestions?

function isa_dequeue_bbp_style() {
if ( class_exists(‘bbPress’) ) {
if ( ! is_bbpress() ) {
wp_dequeue_style(‘bbp-default’);
wp_dequeue_style( ‘bbp_private_replies_style’);
wp_dequeue_script(‘bbpress-editor’);
}
}
}
add_action( ‘wp_enqueue_scripts’, ‘isa_dequeue_bbp_style’, 99 );

thanks!

Post count: 1291

Hi,

Do you use SpeedBooster? if you do comment the following lines – http://screencast.com/t/wPUVCecSk

Thank you, Emil G.

Post count: 268

Thanks Emil,

.. it works!

thanks a lot

  • This reply was modified 11 years by Bintmusic.
Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.