Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
*** WooCommerce Tax Changelog ***

= 3.2.4 - 2025-xx-xx =
* Tweak - Change default Retail Delivery Fee for Colorado to 28c.

= 3.2.3 - 2025-11-17 =
* Fix - Resolved issue where shipping features loaded despite the site being set to tax-only mode.

Expand Down
14 changes: 7 additions & 7 deletions classes/class-wc-connect-custom-surcharge.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public static function init() {
* https://www.avalara.com/blog/en/north-america/2022/10/what-you-need-to-know-about-the-colorado-retail-delivery-fee-now.html
*
* RDF fee is DISABLED by default - not all business are required to charge the fee.
* To apply the fee use `wc_services_apply_us_co_retail_delivery_fee` filter.
* Change boolian flag to `true`
* Example: `add_filter( 'wc_services_apply_us_co_retail_delivery_fee', '__return_true' );`
* To apply the fee use `wc_services_enable_us_co_retail_delivery_fee` filter.
* Change boolean flag to `true`
* Example: `add_filter( 'wc_services_enable_us_co_retail_delivery_fee', '__return_true' );`
*
* @param WC_Cart $cart WooCommerce Cart object.
*/
Expand Down Expand Up @@ -97,10 +97,10 @@ public static function add_us_co_retail_delivery_fee( $cart ) {

/**
* Filter for manipulate the custom surcharge.
*
* As of July 1, 2024 till June 30, 2025 RDF is 29 cents per order
*
* As of July 2025 to June 2026 RDF is 28 cents per order.
* RDF is subject to sales tax.
* https://www.avalara.com/blog/en/north-america/2022/10/what-you-need-to-know-about-the-colorado-retail-delivery-fee-now.html.
* https://tax.colorado.gov/retail-delivery-fee-rates.
*
* @since 2.9.0
*
Expand All @@ -110,7 +110,7 @@ public static function add_us_co_retail_delivery_fee( $cart ) {
$fee_info = apply_filters(
'wc_services_apply_us_co_retail_delivery_fee',
array(
'value' => 0.29,
'value' => 0.28,
'text' => __( 'Retail Delivery Fee', 'woocommerce_services' ),
),
$cart
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ This plugin relies on the following external services:

== Changelog ==

= 3.2.4 - 2025-xx-xx =
* Tweak - Change default Retail Delivery Fee for Colorado to 28c.

= 3.2.3 - 2025-11-17 =
* Fix - Resolved issue where shipping features loaded despite the site being set to tax-only mode.

Expand Down
Loading