How can I dequeue the default BB theme styles?

With Beaver Themer and my own styles. I don’t think need these stylesheets. Anyone know the right way to stop these two loading".

base-css
fl-automator-skin-css

I know I could probably use the Playground for Beaver Themer theme, but I’d rather keep the BB theme as a constant should change be needed.

Many thanks in advance

add_action( 'wp_enqueue_scripts', function() {
  wp_dequeue_style( 'base' );
  wp_dequeue_style( 'fl-automator-skin' );
}, 1000 );
1 Like

Thanks so much Simon. Works perfectly.

@pross I don’t suppose I could trouble you for the way to also remove the BB themes JS (ID fl-automator-js) and the BB Layout JS too if possible?