Home › Forums › WooCommerce Personalized Product Options Manager (PPOM) › PPOM Fields PopUp › Reply To: PPOM Fields PopUp
January 13, 2019 at 4:11 pm
#10307
Keymaster
Hi,
you need add this script to your theme’s functions.php file to unload bootstrap, it’s loading twice:
add_action('wp_footer', 'custom_ppom_remove_style');
function custom_ppom_remove_style() {
wp_dequeue_style('ppom-bootstrap');
wp_deregister_style('ppom-bootstrap');
}