AI Verified

Name

Add an Empty Cart Button to WooCommerce Cart

About

By default, WooCommerce allows users to remove items from their cart individually. This tutorial demonstrates how to implement a single-button solution on the cart page, enabling users to clear the entire cart with just one click. While many guides use a hook to position the button beside the coupon field, it's worth noting that not all store owners may have this feature readily available.

Language

PHP

Rating

Voted: 0 by 0 user(s)

How to Setup Snippet

Simply copy the pre-coded solution to your active child theme’s functions.php or preferably the Code Snippets Plugin.

Codevault

WDXTechnologies

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

08/12/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Add an Empty Cart Button to WooCommerce Cart

 
                    
1/**
2 * Snippet Name: Add an Empty Cart Button to WooCommerce Cart
3 * Snippet Author: wdxtechnologies.com
4 */
5 
6add_action( 'woocommerce_cart_actions', 'ecommercehints_empty_cart_button' ); // Create the button
7function ecommercehints_empty_cart_button() {
8 echo '<a href="' . esc_url( add_query_arg( 'empty_cart', 'true' ) ) . '" class="button" title="' . esc_attr( 'Empty Cart', 'woocommerce' ) . '">' . esc_html( 'Empty Cart', 'woocommerce' ) . '</a>';
9}
10 
11add_action( 'wp_loaded', 'ecommercehints_empty_cart_button_empty_cart_action', 20 ); // EMpty the cart if empty button is clicked
12function ecommercehints_empty_cart_button_empty_cart_action() {
13 if ( isset( $_GET['empty_cart'] ) && 'true' === esc_html( $_GET['empty_cart'] ) ) {
14 WC()->cart->empty_cart();
15 $referer = wp_get_referer() ? esc_url( remove_query_arg( 'empty_cart' ) ) : wc_get_cart_url();
16 wp_safe_redirect($referer);
17 }
18}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

1

WooCommerce Prevent Specific Email Address From Checking Out

Added: 1 year ago

Last Updated: 2 months ago

This snippet checks the billing email field upon the user clicking the place order button and if this email matches the email you have defined in this code, a custom error will appear, the cart is emp...

WooCommerce

AI Verified

1

WooCommerce Change Add To Cart Button Text On Product Archive

Added: 1 year ago

Last Updated: 1 year ago

Like with changing the text on the single product template, it’s important to note that if you’re trying to change the button text to either “add to cart” or “add to basket” then this guide is not for...

WooCommerce

AI Verified

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

0

Show 'NEW' Badges for Recently Added Items in WooCommerce

Added: 8 months ago

Last Updated: 8 months ago

This code snippet adds a "NEW!" badge to products in WooCommerce, indicating that they are newly added. The badge is displayed both on the product archive pages and the single product template for a s...

WooCommerce

AI Verified

0

Integrate a 'Sold' Column into the WordPress Dashboard's Product Section

Added: 10 months ago

Last Updated: 10 months ago

Are you interested in knowing the quantity of items you have sold?

WooCommerce

AI Verified

0

Transforming Coupon Codes into Discount Codes in WooCommerce

Added: 9 months ago

Last Updated: 9 months ago

In certain situations, the term "coupon" may be inappropriate. To address this, we've developed several guides suggesting alternative synonyms for "coupon." This specific guide focuses on replacing th...