Try this variation. This definitely works for me by the way…
add_action('wp_enqueue_scripts', 'deregister_pl_bootstrap', 100);
function deregister_pl_bootstrap() {
if(sp_is_forumpage()) {
wp_dequeue_script('pagelines-bootstrap-all');
}
}
so we will see…



