AI Verified

Name

Show 0,00 for free Shipping

Language

PHP

Rating

Voted: 1 by 1 user(s)

Codevault

jbeer

Scroll down to see more snippets from this codevault.

Wordpress Compatability

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

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:

13/12/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

Show 0,00 for free Shipping

 
                    
1add_filter( 'woocommerce_cart_shipping_method_full_label', 'add_0_to_shipping_label', 10, 2 );
2 
3function add_0_to_shipping_label( $label, $method ) {
4 
5// if shipping rate is 0, concatenate ": $0.00" to the label
6if ( ! ( $method->cost > 0 ) ) {
7$label .= ': ' . wc_price(0);
8}
9 
10// return original or edited shipping label
11return $label;
12 
13}

1

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

1

WooCommerce Sort Products By Stock Status

Added: 1 year ago

Last Updated: 2 months ago

This quick guide shows you how you can sort products on the archive template by stock status. This means you’ll be able to show In Stock products first, improving the customer experience....

WooCommerce

AI Verified

2

Add Alphabetical Sorting to Woocommerce

Added: 2 years ago

Last Updated: 2 months ago

Sorts products alphabetically in Woocommerce

WooCommerce

AI Verified

0

WooCommerce Update Checkout Totals On Billing State County Change

Added: 1 year ago

Last Updated: 1 year ago

Are you writing a custom snippet which makes changes to the order totals based on the billing county

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

3

Confirm Password Field in Woocommerce

Added: 2 years ago

Last Updated: 2 months ago

WooCommerce

AI Verified

3

Redirect customers to own thank-you page after order

Added: 2 years ago

Last Updated: 2 months ago

You may want to redirect your customers to a custom thank you page after they place an order. You can do that with the following WooCommerce snippet

WooCommerce

AI Verified

2

Bypass logout confirmation.

Added: 2 years ago

Last Updated: 3 months ago