I am having the same issue. My Empty Cart button was working fine until I updated to the latest Woocommerce. When I click “Ëmpty Cart” there is no response.
I have the same problem. Empty cart button not working. Using woocommerce and woo storefront theme if that matters. here is my shop:
http://www.airgunproshop.com/shop/
Just discovered my empty cart button is broken too.
This is good to know, thank you guys, saved me a lot time to figure out what was wrong with my webpage but it’s WooCommerce Poor Guys Swiss Knife that needs an update ;).
Hi guys, had same problem & resolved. Issue arises because WC-PGSK use hook woocommerce_after_cart_table for empty buttons, which falls outside form. Here what works for me:
– Copy woocommerce/templates/cart/cart.php to your theme as woocommerce/cart/cart.php
– Modify theme cart.php, moving div cart-collaterals block into form like this:
<div class="cart-collaterals">
<?php do_action( 'woocommerce_cart_collaterals' ); ?>
<?php woocommerce_cart_totals(); ?>
</div>
</form>
Hope this helps