Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 104029

Kloon on "[Plugin: WooCommerce - excelling eCommerce] A button to empty the chart !?"

$
0
0

Add the following code to your theme's functions.php file and then just append ?clear-cart to any of your site urls

// check for clear-cart get param to clear the cart
add_action( 'init', 'woocommerce_clear_cart_url' );
function woocommerce_clear_cart_url() {
	if ( isset( $_GET['clear-cart'] ) ) {
		global $woocommerce;
		$woocommerce->cart->empty_cart();
	}
}

Viewing all articles
Browse latest Browse all 104029

Trending Articles