Home › Forums › WooCommerce Personalized Product Options Manager (PPOM) › Remove Boostrap and any other css › Reply To: Remove Boostrap and any other css
January 7, 2019 at 10:03 am
#10244
Participant
I hooked in wp_footer
.
Thanks!
add_action('wp_footer', 'custom_ppom_remove_style');
function custom_ppom_remove_style() {
wp_dequeue_style('ppom-bootstrap');
wp_deregister_style('ppom-bootstrap');
}