AI Verified

Name

WooCommerce Colorado Retail Delivery Fee

About

As of July 1st 2022, The Department of Revenue in Colorado, United States, is implementing a new “Retail Delivery Fee” as detailed here. This statute effectively says a flat $0.27 fee per order must be added for any orders which are delivered by motor vehicle to an address in Colorado and it must show on the receipt or invoice as one item called “Retail Delivery Fee”.This snippet adds ‘CO’ (the select option value for Colorado) to an array we’ve called ‘state’. We have made this variable an array should any other states implement this Retail Delivery Fee in the future. This snippet then grabs the user’s chosen shipping method from the checkout session (the state drop-down list).Then, this is where the magic happens. The snippet uses an if statement to check whether both the chosen shipping state is in the array we declared earlier (is CO the chosen shipping state) AND if the chosen shipping method is the flat rate method. Keep in mind, you are going to have to change the shipping method option value ‘flat_rate:10’ to whatever yours is set to. You can find the shipping method option value info using this guide.If both conditions are met, a $0.27 surcharge is added to the order and displayed as part of the order summary. This surcharge is added as a fee and labelled “Retail Delivery Fee” as requested by Colorado’s Department of Revenue.By default, WooCommerce does not refresh the order summary to show this fee should it apply. This is where some JavaScript comes in. This JavaScript section of the code snippet will update the order summary to reflect the fee when the State has been selected, meaning your customers are not hit with any surprise fees post purchase.You’ll notice the Retail Delivery Fee will be shown on the Checkout, Thank You Page, My Account Order View, Admin Dashboard Order View, and all emails.

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-colorado-retail-delivery-fee

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:

15/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 Colorado Retail Delivery Fee

 
                    
1/**
2 * Snippet Name: WooCommerce Colorado Retail Delivery Fee
3 * Snippet Author: ecommercehints.com
4 */
5 
6// Add the $0.27 fee
7add_action( 'woocommerce_cart_calculate_fees','ecommercehints_colorado_retail_delivery_fee' );
8function ecommercehints_colorado_retail_delivery_fee() {
9 global $woocommerce;
10 if (is_admin() && !defined('DOING_AJAX'))
11 return;
12 $state = array('CO'); // CO is the select option value for Colorado
13 $chosen_shipping_method = WC()->session->get('chosen_shipping_methods')[0]; // Get the shipping method
14 
15 /*
16 * If shipping state equals Colorado AND shipping method is your flat rate options, add the fee
17 * You will need to change 'flat_rate:10' to your flat rate shipping method radio button value
18 */
19 if ( in_array( $woocommerce->customer->get_shipping_state(), $state ) && 'flat_rate:10' === $chosen_shipping_method):
20 $woocommerce->cart->add_fee( 'Retail Delivery Fee', 0.27, true, '' );
21 endif;
22}
23 
24// JavaScript to update the totals on state selection
25add_action( 'wp_footer', 'ecommercehints_update_checkout_totals' );
26function ecommercehints_update_checkout_totals() { ?>
27<script>
28 jQuery( function( $ ) {
29 $( 'form.checkout' ).on( 'change', 'select[name^="billing_state"]', function() {
30 $( 'body' ).trigger( 'update_checkout' );
31 });
32});
33</script>
34<?php }

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

1

WooCommerce Custom Checkbox On Product

Added: 1 year ago

Last Updated: 2 months ago

This snippet generates a custom checkbox on the product page, which if checked, adds meta to the order. You’ll notice if the checkbox is ticked and the product is added to the cart and purchased, the...

WooCommerce

AI Verified

0

Overide "Return to shop" URL

Added: 4 weeks ago

Last Updated: 4 weeks ago

Change the destination of the "Return to shop" button on the WooCommerce Cart Page. Useful if you want it to be different from the Shop Page defined in WooCommerce Settings.

WooCommerce

AI Verified

0

WooCommerce Remove Order Notes Field From Checkout

Added: 1 year ago

Last Updated: 1 year ago

A lot of the time, the user wont need to enter additional information about their order especially if shipping is disabled. Typically these notes fields will let the store admin know when is a good ti...

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...