Is it possible to add an empty cart button inside a mini cart? I managed to do that on a cart page but having issue with a mini cart.
add_action( 'woocommerce_widget_shopping_cart_buttons', 'add_clear_cart_button', 20 );
function add_clear_cart_button() {
echo "<a class='button' href='?empty-cart=true'>" . __( 'Empty Cart', 'woocommerce' ) . "</a>";
}
Am I using a wrong action?
add below function in function.php for empty cart button