AI Verified

Name

WooCommerce Enable Shipping Method Based On Coupon

About

This guide shows you how to hide a specific shipping method option and only enable it when a specific coupon code has been entered. For this to work properly, you will need to tweak the line 10 in the code – the specific coupon code to enable the hidden shipping method option, and line 13 in the code – the shipping method radio option value. You can get the shipping method radio option value by first going to the checkout page, using inspect element, clicking the radio button of the shipping method, then expanding the li class. It will look something like “local_pickup:13”. You’ll also need to clear all customer sessions under Dashboard > WooCommerce > Status > Tools. This tool will empty all active customer baskets so it’s probably best to do this when the site is quiet. This is a very niche solution but some parts of the code could help you implement a similar solution your business requires.

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.

Link for further information:

The author has provided the following URL that may be helpful to setting up or using this snippet:

https://www.ecommercehints.com/woocommerce-enable-shipping-method-based-on-coupon

Codevault

ecommercehints

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.

Website/ Profile URL:

https://www.ecommercehints.com/

History

Last modified:

14/11/2022

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

WooCommerce Enable Shipping Method Based On Coupon

 
                    
1/**
2 * Snippet Name: WooCommerce enable shipping method if a specific coupon has been entered
3 * Snippet Author: ecommercehints.com
4 */
5 
6add_filter( 'woocommerce_package_rates', 'ecommercehints_enable_shipping_method_based_on_coupon', 10, 2 );
7 
8function ecommercehints_enable_shipping_method_based_on_coupon($rates, $package) {
9global $woocommerce;
10$coupon_id = 'showlocalpickup'; // The specific coupon code
11 
12if(!in_array($coupon_id, $woocommerce->cart->get_applied_coupons())) {
13 unset( $rates['local_pickup:13'] ); // The shipping method radio button value
14}
15return $rates;
16}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

2

Remove Apple pay defaut woocommerce

Added: 1 year ago

Last Updated: 2 months ago

disable Apple pay button, under product description

WooCommerce

AI Verified

0

WooCommerce Redirect Cart to Checkout page

Added: 1 year ago

Last Updated: 1 year ago

Skip the Cart page and redirect to the Checkout page.

WooCommerce

AI Verified

0

Disable Shop

Added: 1 year ago

Last Updated: 1 year ago

Disable the shop and display a temporary closed message

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

7

WooCommerce Show Number Of People Viewing Product

Added: 1 year ago

Last Updated: 1 month ago

We want to make this solution absolutely clear from the outset. This snippet does NOT generate the actual number of people viewing the product. It shows a randomly generated number in the range of two...

WooCommerce

AI Verified

5

WooCommerce Show Number Of Units Sold On Product Page

Added: 1 year ago

Last Updated: 2 months ago

Showing the number of product units sold on the single product page is a great way to introduce Fear Of Missing Out (FOMO). You can highlight how many products are sold to let customers know a product...

WooCommerce

AI Verified

3

WooCommerce Add Content Under The Proceed To Checkout Button On The Cart Page

Added: 1 year ago

Last Updated: 2 months ago

How many times have you bought something online and seen trust symbols near the proceed to checkout button on the cart page? “30 Day Money Back Guarantee” or “Secure Checkout” are popular examples. By...