I’m using a separate woocommerce pro cart plugin from codecanyon. It’s conflicting with enfolds cart. How do I completely disable all of enfolds cart feature so there is no JavaScript problems. Need it to just be removed from mobile and desktop.
The pro plugin I use has a floating shopping cart icon and modal overlay upon adding to cart. That’s why I need enfolds disabled.
Thank you. Your theme is super!
Gary
Hey grpetz,
Thank you for using Enfold.
Please add this in the functions.php file.
add_action('after_setup_theme','ava_woocommerce_mod', 100);
function ava_woocommerce_mod() {
remove_action( 'init', 'avia_woocommerce_cart_placement', 10);
}
Best regards,
Ismael