Hi there!
I added the Jetpack Slideshow to a test site, and it only added a stylesheet with the id jetpack-block-slideshow-css. I’m probably missing something.
Could you share a link to the page that has this so I can take a closer look?
If you don’t feel comfortable sharing it publicly, you can reach out via this page. Make sure to include a link to this thread as well.
Hi, thanks for the reply, and sorry I didn’t see it until now. After trying a lot of things, this turned out to be the winner:
add_filter('get_footer', function(){
wp_dequeue_style( 'jetpack-block-slideshow' );
}, 9999);
The ‘9999’ is crucial to get it to actually disappear. Now, if only I could get it to also disappear from the backend (block editor), then my blocks there would look closer to the way they do on the front.
Hi @publicradio
The hook which styles the Block editor is do_action( ‘enqueue_block_editor_assets’ ) but that could cause other unintended impact. You can see more here:
https://developer.wordpress.org/reference/hooks/enqueue_block_editor_assets/
Hi there, @publicradio,
I’m going to mark this thread as solved. If you have any further questions or need more help, you’re welcome to open another thread here. Cheers!