Advertisement
Guest User

Untitled

a guest
Jan 31st, 2015
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. // Let's wait for the button to be clicked on
  3. add_action( 'template_redirect', 'empty_cart_button_handler' );
  4. function empty_cart_button_handler() {
  5. if( isset( $_POST['empty_cart'] ) && $_SERVER['REQUEST_METHOD'] == "POST" ) {
  6. WC()->cart->empty_cart( true );
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement