waumsley
(David Waumsley)
1
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
pross
2
add_action( 'wp_enqueue_scripts', function() {
wp_dequeue_style( 'base' );
wp_dequeue_style( 'fl-automator-skin' );
}, 1000 );
1 Like
waumsley
(David Waumsley)
3
Thanks so much Simon. Works perfectly.
waumsley
(David Waumsley)
4
@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?