How to Stop the Frontend Stackable Stylesheets from Being Loaded

All our CSS are essential for our blocks to look correct in the frontend. Our CSS files are loaded whenever a Stackable block is used on the page.

If you do need however to stop all Stackable CSS files from loading, you can use this PHP snippet:

add_action( 'stackable_block_enqueue_frontend_assets', function() {
    wp_deregister_style( 'ugb-style-css' );
} );