Hello,
I want to edit the avia_woocommerce_cart_dropdown functions located in enfold/config-woocommerce/config.php
Unfortunately there is not the if(!function_exists so I can’t just override it in my child theme functions…
I tried to remove_action like that :
remove_action( ‘ava_main_header’, ‘avia_woocommerce_cart_dropdown’, 10);
But it didn’t work. Tryed by adding delay with init tag, after_setup_theme tag etc and none of them worked.
Could you help me please ?
Thanks
Hey Ludovic,
Try to modify this function instead: avia_woocommerce_cart_placement
then just replace this part:
add_action( $position, 'avia_woocommerce_cart_dropdown', 10);
make sure to copy this as well:
add_action( 'init', 'avia_woocommerce_cart_placement', 10);
Hope this helps.
Best regards,
Nikko