Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #232535

    I don’t need any shopping cart functionality – how can i prevent this from loading and wasting necessary server resources?

    #232637

    Hey AntonNovikov!

    Add this code into the enfold/functions.php file to remove the cart:

    
    add_action('init','avia_child_theme_setup');
    function avia_child_theme_setup(){
    remove_action( 'ava_main_header', 'avia_woocommerce_cart_dropdown', 10);
    }
    

    Best regards,
    Peter

    #232642

    Thank you.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to remove Shopping Cart Woo commerce?’ is closed to new replies.