Skip to content

Instantly share code, notes, and snippets.

@wmacmill
Forked from kloon/gist:4541017
Created November 1, 2017 17:43
Show Gist options
  • Save wmacmill/39eea2e8fc80b4e01aa734763fe61f68 to your computer and use it in GitHub Desktop.
Save wmacmill/39eea2e8fc80b4e01aa734763fe61f68 to your computer and use it in GitHub Desktop.
WooCommerce Clear Cart via URL
// check for clear-cart get param to clear the cart, append ?clear-cart to any site url to trigger this
add_action( 'init', 'woocommerce_clear_cart_url' );
function woocommerce_clear_cart_url() {
if ( isset( $_GET['clear-cart'] ) ) {
global $woocommerce;
$woocommerce->cart->empty_cart();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment