Hi there,
I would like to dequeue some inline CSS added by your plugin. I see the following inline style ID's in the DOM I wish to dequeue:
- rwmb-inline-css
- rwmb-input-inline-css
- rwmb-input-list-inline-css
- rwmb-select-inline-css
However, when using the suggested method from your documentation:
function metabox_remove_styles() {
wp_dequeue_style( 'rwmb-inline' );
wp_dequeue_style( 'rwmb-input-inline' );
wp_dequeue_style( 'rwmb-input-list-inline' );
wp_dequeue_style( 'rwmb-select-inline' );
}
add_action( 'rwmb_enqueue_scripts', 'metabox_remove_styles', 99 );
This does not dequeue these inline styles? I would be very grateful if you can provide the methodology for removing these.
I look forward to your response 🙂