warp929
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Critical issue: Add to Cart broken in WooCommerce 10.5.010.5.2 has resolved the disabled Add to Cart button. I’m glad that the folks on Github were proactive on this issue.
Forum: Plugins
In reply to: [WooCommerce] Critical issue: Add to Cart broken in WooCommerce 10.5.0@lovingbro You published a link to the same thing that I published 2 days before you.
I’m using Storefront from Automattic since I started my website many years ago.
I’ve spent hours troubleshooting and have deactivated all plugins that could be deactivated and still have Woocommerce working. The problem persisted. According to “chihsuan” on Github, 10.5.1 was supposed to address the “add-to-cart” issue but apparently not.Forum: Plugins
In reply to: [WooCommerce] Critical issue: Add to Cart broken in WooCommerce 10.5.0I see 10.5.1 is available now but does not mention the “Add to cart” problem. I can confirm it did not resolve the issue.
10.5.1 – 2026-02-11
- Fix – Cache the affected orders check for the canceled auth fee remediation note to avoid an expensive query on every admin page load
- This reply was modified 3 months, 4 weeks ago by warp929.
Forum: Plugins
In reply to: [WooCommerce] Critical issue: Add to Cart broken in WooCommerce 10.5.0Here is some additional information. Looks like some folks with slow connections made a request to Disable the add-to-cart button until scripts finish loading. Unfortunately, it broke many other’s site.
Also, there will be a 10.5.1 update to help according to this:
“Given that there appear to be several reports about plugins being incompatible with WooCommerce 10.5, we will ship an update in 10.5.1 where the chances of incompatibilities are mitigated”
https://github.com/woocommerce/woocommerce/issues/63167#issuecomment-3869025286Forum: Plugins
In reply to: [WooCommerce] Critical issue: Add to Cart broken in WooCommerce 10.5.0Any product that is Variable has a grayed out “Add to cart” button. When inspecting the button it is marked as “disabled”. According to my research, it seems that 10.5.0 automatically disables all Add to Cart buttons until scripts complete and then the button is enabled. This fails with ALL variable products. The problem appears to be in “api-fetch.min.js” but I have limited troubleshooting experience.
I tested other themes, disabled plugins, created new variable products all nothing helped.
For now, this code (generated by Gemini) added through Code Snippets forces the button to ‘enabled’. It probably creates a new problem but at least customers can add products to the shopping cart./**
* 1. Remove 'disabled' attribute from the HTML output
*/
add_filter( 'woocommerce_single_add_to_cart_button_html', function( $html ) {
return str_replace( ' disabled', '', $html );
}, 99, 1 );
/**
* 2. Inject Javascript to force-enable and prevent re-locking
*/
add_action( 'wp_footer', function() {
?>
<script type="text/javascript">
(function($) {
var forceEnable = function() {
var $btn = $('.single_add_to_cart_button');
if ($btn.prop('disabled')) {
$btn.prop('disabled', false).removeClass('disabled wc-variation-selection-needed');
}
};
// Run on load
$(window).on('load', forceEnable);
// Run when variations change (bridging the 10.5 gap)
$(document).on('found_variation check_variations', forceEnable);
// MutationObserver to catch any late-loading scripts trying to re-disable
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.attributeName === "disabled") {
forceEnable();
}
});
});
$('.single_add_to_cart_button').each(function() {
observer.observe(this, { attributes: true });
});
})(jQuery);
</script>
<style>
/* 3. Prevent CSS-based graying out */
.woocommerce div.product form.cart .button:disabled,
.woocommerce div.product form.cart .button:disabled[disabled] {
opacity: 1 !important;
cursor: pointer !important;
pointer-events: auto !important;
}
</style>
<?php
}, 99 );Forum: Plugins
In reply to: [USPS Simple Shipping for Woocommerce] Ground Advantage shipping is LOWDan,
I no longer have your plug-in installed to do any more debugging. I appreciate your work but had to move to a plug-in that showed a shipping price more in line with my actual costs.Forum: Plugins
In reply to: [USPS Simple Shipping for Woocommerce] Ground Advantage shipping is LOWDan, thank you for the response. I had read that previously. Having the plug-in pick the lowest rate, in my case, Cubic, is problematic since it is always too low. I know you make this plugin available for free, but if you are ever inclined to add some options here, it would be a nice addition.
Additionally, I found that if I increase the quantity of a product (each weigh 3.99 lbs., 12x12x6 in. box) the Ground Advantage rate does not change. Shipping one item and four items calculates to the same. Unchecking “Quote regular items by weight” makes very small add-on parts cost too much in shipping.
I also tried to increase my box size to 12.2 x 12 x 6 to see if it triggered the large option but the pricing remained the same.Also, I did see this warning today, “Warning: This plugin has not been tested with your current version of WordPress.”
Running WordPress 6.3.1

I just did some more troubleshooting and the problem seems to be for Parcel Select or what I’m calling Ground shipping. Not sure if I checked Priority previously. The price for USPS Parcel (Ground) is $23.40 whether Commercial pricing is selected or not. Priority changes from $28.75 to $24.81 so that seems to be working.
Woocommerce Shipping charges $14.38 for Parcel Select and $24.81 for Priority. So Priority is correct. Is is possible to get Parcel Select working with Commercial pricing?array (</code><br>'error' => NULL,<br>'rates' =><br>array (<br>'express_mail' =><br>array (<br>'id' => 'express_mail',<br>'label' => 'USPS Priority Mail EXPRESS',<br>'cost' => 67.7000000000000028421709430404007434844970703125,<br>),<br>'priority_mail' =><br>array (<br>'id' => 'priority_mail',<br>'label' => 'USPS Priority Mail',<br>'cost' => 24.809999999999998721023075631819665431976318359375,<br>),<br>'standard_post' =><br>array (<br>'id' => 'standard_post',<br>'label' => 'USPS Ground',<br>'cost' => 23.39999999999999857891452847979962825775146484375,<br>),<br>),<br>'settings' =><br>array (<br>'props' =><br>array (<br>'plugin_id' => 'woocommerce_',<br>'id' => 'usps_simple',<br>'errors' =><br>array (<br>),<br>'data' =><br>array (<br>),<br>'supports' =><br>array (<br>0 => 'settings',<br>),<br>'method_title' => 'USPS Simple',<br>'method_description' => 'Shows live USPS domestic rates on checkout',<br>'enabled' => 'yes',<br>'title' => 'USPS Simple',<br>'rates' =><br>array (<br>),<br>'tax_status' => 'taxable',<br>'fee' => NULL,<br>'minimum_fee' => NULL,<br>'instance_id' => 0,<br>'instance_form_fields' =><br>array (<br>),<br>'instance_settings' =><br>array (<br>),<br>'availability' => NULL,<br>'countries' =><br>array (<br>),<br>'sender' => '91605',<br>'commercialRates' => true,<br>'groupByWeight' => true,<br>'apiEndpoint' => 'https://secure.shippingapis.com/ShippingAPI.dll',<br>'apiUserId' => '891000005749',<br>),<br>'settings' =><br>array (<br>'enabled' => 'yes',<br>'sender' => '91605',<br>'user_id' => '',<br>'commercial_rate' => 'yes',<br>'group_by_weight' => 'yes',<br>'express_mail' => '',<br>'t_express_mail' => 'USPS Priority Mail EXPRESS',<br>'express_mail_3' => 'yes',<br>'express_mail_2' => 'no',<br>'express_mail_23' => 'no',<br>'priority_mail' => '',<br>'t_priority_mail' => 'USPS Priority Mail',<br>'priority_mail_1' => 'yes',<br>'priority_mail_33' => 'no',<br>'priority_mail_18' => 'no',<br>'priority_mail_47' => 'no',<br>'priority_mail_48' => 'no',<br>'priority_mail_49' => 'no',<br>'priority_mail_50' => 'no',<br>'first_class' => '',<br>'t_first_class' => 'USPS First Class Mail',<br>'first_class_0A' => 'no',<br>'first_class_0B' => 'no',<br>'first_class_0C' => 'no',<br>'first_class_0D' => 'no',<br>'first_class_12' => 'no',<br>'first_class_15' => 'no',<br>'first_class_19' => 'no',<br>'first_class_61' => 'no',<br>'first_class_53' => 'no',<br>'first_class_78' => 'no',<br>'standard_post' => '',<br>'t_standard_post' => 'USPS Ground',<br>'standard_post_4' => 'yes',<br>'media_mail' => '',<br>'t_media_mail' => '',<br>'media_mail_6' => 'no',<br>'library_mail' => '',<br>'t_library_mail' => '',<br>'library_mail_7' => 'no',<br>'first_class_0E' => 'no',<br>),<br>),<br>'package' =><br>array (<br>'contents' =><br>array (<br>'d6baf65e0b240ce177cf70da146c8dc8' =><br>array (<br>'key' => 'd6baf65e0b240ce177cf70da146c8dc8',<br>'product_id' => 264,<br>'variation_id' => 0,<br>'variation' =><br>array (<br>),<br>'quantity' => 1,<br>'data_hash' => 'b5c1d5ca8bae6d4896cf1807cdf763f0',<br>'line_tax_data' =><br>array (<br>'subtotal' =><br>array (<br>),<br>'total' =><br>array (<br>),<br>),<br>'line_subtotal' => 3.4900000000000002131628207280300557613372802734375,<br>'line_subtotal_tax' => 0,<br>'line_total' => 3.4900000000000002131628207280300557613372802734375,<br>'line_tax' => 0,<br>'product' =><br>array (<br>'name' => 'Adapter 1/4" QC to 1/4" NPT',<br>'slug' => 'adapter-1-4-qc-to-1-4-npt',<br>'price' => '3.49',<br>'regular_price' => '3.49',<br>'sale_price' => '',<br>'weight' => '.156 lbs',<br>'weight_lbs' => 0.1559999999999999997779553950749686919152736663818359375,<br>'dimensions' => '9 x 7 x .8 in',<br>'dimensions_in' => '9 x 7 x .8',<br>),<br>),<br>'1ccd0651036e3b86d492ac28fffd27d2' =><br>array (<br>'key' => '1ccd0651036e3b86d492ac28fffd27d2',<br>'product_id' => 11,<br>'variation_id' => 30,<br>'variation' =><br>array (<br>'attribute_mounting-bracket-15' => 'No',<br>),<br>'quantity' => 1,<br>'data_hash' => '9a0d25690eca8d5a1df65440fc474826',<br>'line_tax_data' =><br>array (<br>'subtotal' =><br>array (<br>),<br>'total' =><br>array (<br>),<br>),<br>'line_subtotal' => 229.990000000000009094947017729282379150390625,<br>'line_subtotal_tax' => 0,<br>'line_total' => 229.990000000000009094947017729282379150390625,<br>'line_tax' => 0,<br>'product' =><br>array (<br>'name' => '3Built Motorsports Shock Bleeder - No',<br>'slug' => '3built-motorsports-shock-bleeder-no',<br>'price' => '229.99',<br>'regular_price' => '229.99',<br>'sale_price' => '',<br>'weight' => '4.1 lbs',<br>'weight_lbs' => 4.0999999999999996447286321199499070644378662109375,<br>'dimensions' => '12 x 12 x 6 in',<br>'dimensions_in' => '12 x 12 x 6',<br>),<br>),<br>),<br>'contents_cost' => 233.48000000000001818989403545856475830078125,<br>'applied_coupons' =><br>array (<br>),<br>'user' =><br>array (<br>'ID' => 0,<br>),<br>'destination' =><br>array (<br>'country' => 'US',<br>'state' => 'FL',<br>'postcode' => '33572',<br>'city' => 'apollo beach',<br>'address' => '',<br>'address_1' => '',<br>'address_2' => '',<br>),<br>'cart_subtotal' => '233.48',<br>'rates' =><br>array (<br>),<br>),<br>'requests' =><br>Dgm\UspsSimple\Calc\Pair::__set_state(array(<br>'online' => NULL,<br>'standard' => NULL,<br>)),<br>'request' =><br>Dgm\UspsSimple\Calc\Request::__set_state(array(<br>'apiUserId' => '891000005749',<br>'package' =><br>Dgm\UspsSimple\Calc\Package::__set_state(array(<br>'orig' =><br>Dgm\UspsSimple\Calc\Area::__set_state(array(<br>'countryCode' => 'US',<br>'zipCode' => '91605',<br>)),<br>'dest' =><br>Dgm\UspsSimple\Calc\Area::__set_state(array(<br>'countryCode' => 'US',<br>'zipCode' => '33572',<br>)),<br>'items' =><br>array (<br>'d6baf65e0b240ce177cf70da146c8dc8' =><br>Dgm\UspsSimple\Calc\Item::__set_state(array(<br>'product' =><br>Dgm\UspsSimple\Calc\Product::__set_state(array(<br>'weight' => 0.1559999999999999997779553950749686919152736663818359375,<br>'dim' =><br>Dgm\UspsSimple\Calc\Dim::__set_state(array(<br>'length' => 9.0,<br>'width' => 7.0,<br>'height' => 0.8000000000000000444089209850062616169452667236328125,<br>)),<br>)),<br>'quantity' => 1,<br>)),<br>'1ccd0651036e3b86d492ac28fffd27d2' =><br>Dgm\UspsSimple\Calc\Item::__set_state(array(<br>'product' =><br>Dgm\UspsSimple\Calc\Product::__set_state(array(<br>'weight' => 4.0999999999999996447286321199499070644378662109375,<br>'dim' =><br>Dgm\UspsSimple\Calc\Dim::__set_state(array(<br>'length' => 12.0,<br>'width' => 12.0,<br>'height' => 6.0,<br>)),<br>)),<br>'quantity' => 1,<br>)),<br>),<br>)),<br>'services' =><br>Dgm\UspsSimple\Calc\Services::__set_state(array(<br>'retailGroundEnabled' => true,<br>'serviceMatchersByCode' =><br>array (<br>3 =><br>array (<br>0 =><br>Dgm\UspsSimple\Calc\MatchAny::__set_state(array(<br>'service' =><br>Dgm\UspsSimple\Calc\Service::__set_state(array(<br>'family' =><br>Dgm\UspsSimple\Calc\ServiceFamily::__set_state(array(<br>'id' => 'express_mail',<br>'title' => 'USPS Priority Mail EXPRESS',<br>'sort' => 0,<br>)),<br>'fitFn' => NULL,<br>)),<br>)),<br>),<br>1 =><br>array (<br>0 =><br>Dgm\UspsSimple\Calc\MatchAny::__set_state(array(<br>'service' =><br>Dgm\UspsSimple\Calc\Service::__set_state(array(<br>'family' =><br>Dgm\UspsSimple\Calc\ServiceFamily::__set_state(array(<br>'id' => 'priority_mail',<br>'title' => 'USPS Priority Mail',<br>'sort' => 1,<br>)),<br>'fitFn' => NULL,<br>)),<br>)),<br>),<br>4 =><br>array (<br>0 =><br>Dgm\UspsSimple\Calc\MatchAny::__set_state(array(<br>'service' =><br>Dgm\UspsSimple\Calc\Service::__set_state(array(<br>'family' =><br>Dgm\UspsSimple\Calc\ServiceFamily::__set_state(array(<br>'id' => 'standard_post',<br>'title' => 'USPS Ground',<br>'sort' => 3,<br>)),<br>'fitFn' => NULL,<br>)),<br>)),<br>),<br>),<br>)),<br>'groupByWeight' => true,<br>'commercialRates' => true,<br>)),<br>'responses' =><br>Dgm\UspsSimple\Calc\Pair::__set_state(array(<br>'online' => '<br>91605<br>33572<br>4<br>4.10<br>TRUE<br>8<br>Priority Mail Express 1-Day<sup>®</sup><br>79.60<br>67.70<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Hold For Pickup<br>79.60<br>67.70<br>2023-01-09<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Flat Rate Envelope<br>27.90<br>24.25<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Flat Rate Envelope Hold For Pickup<br>27.90<br>24.25<br>2023-01-09<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Legal Flat Rate Envelope<br>28.05<br>24.50<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Legal Flat Rate Envelope Hold For Pickup<br>28.05<br>24.50<br>2023-01-09<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Padded Flat Rate Envelope<br>28.45<br>24.70<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Padded Flat Rate Envelope Hold For Pickup<br>28.45<br>24.70<br>2023-01-09<br>1-Day<br>Priority Mail<sup>®</sup><br>28.75<br>24.81<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Hold For Pickup<br>0.00<br>24.81<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Large Flat Rate Box<br>22.45<br>19.95<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Large Flat Rate Box Hold For Pickup<br>0.00<br>19.95<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Medium Flat Rate Box<br>17.05<br>15.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Medium Flat Rate Box Hold For Pickup<br>0.00<br>15.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Box<br>10.40<br>9.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Box Hold For Pickup<br>0.00<br>9.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box A<br>0.00<br>14.34<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box A Hold For Pickup<br>0.00<br>14.34<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box B<br>0.00<br>23.31<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box B Hold For Pickup<br>0.00<br>23.31<br>2023-01-10<br>2-Day<br>Priority Mail Flat Rate<sup>®</sup> Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail Flat Rate<sup>®</sup> Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Legal Flat Rate Envelope<br>10.20<br>8.80<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Legal Flat Rate Envelope Hold For Pickup<br>0.00<br>8.80<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Padded Flat Rate Envelope<br>10.60<br>9.20<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Padded Flat Rate Envelope Hold For Pickup<br>0.00<br>9.20<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Gift Card Flat Rate Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Gift Card Flat Rate Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Window Flat Rate Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Window Flat Rate Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Cubic<br>0.00<br>11.23<br>2023-01-10<br>2-Day<br>Parcel Select Ground<sup>™</sup><br>14.38<br>Parcel Select Ground<sup>™</sup> Hold For Pickup<br>14.38<br>Parcel Select Ground<sup>™</sup> Cubic<br>8.85<br>Media Mail Parcel<br>6.17<br>Library Mail Parcel<br>5.84<br>Bound Printed Matter Flats<br>3.39<br>Bound Printed Matter Flats Hold For Pickup<br>3.39<br>Bound Printed Matter Parcels<br>4.62<br>Bound Printed Matter Parcels Hold For Pickup<br>4.62<br><br>',<br>'standard' => '<br>91605<br>33572<br>4<br>4.10<br>VARIABLE<br>TRUE<br>8<br>USPS Retail Ground<sup>®</sup><br>23.40<br>104<br>Certificate of Mailing (Form 3817)<br>true<br>1.75<br>103<br>Collect on Delivery<br>true<br>9.20<br>true<br>false<br>175<br>Collect on Delivery Restricted Delivery<br>true<br>15.45<br>true<br>false<br>100<br>Insurance<br>true<br>2.60<br>true<br>false<br>177<br>Insurance Restricted Delivery<br>true<br>17.25<br>true<br>false<br>108<br>Signature Confirmation<sup>™</sup><br>true<br>3.65<br>173<br>Signature Confirmation<sup>™</sup> Restricted Delivery<br>true<br>9.90<br>156<br>Signature Confirmation<sup>™</sup> Electronic<br>true<br>3.10<br>174<br>Signature Confirmation<sup>™</sup> Electronic Restricted Delivery<br>true<br>9.35<br>106<br>USPS Tracking<sup>®</sup><br>true<br>0.00<br>155<br>USPS Tracking<sup>®</sup> Electronic<br>true<br>0.00<br><br>',<br>)),<br>'combinedResponse' => '<br>91605<br>33572<br>4<br>4.10<br>TRUE<br>8<br>Priority Mail Express 1-Day<sup>®</sup><br>79.60<br>67.70<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Hold For Pickup<br>79.60<br>67.70<br>2023-01-09<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Flat Rate Envelope<br>27.90<br>24.25<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Flat Rate Envelope Hold For Pickup<br>27.90<br>24.25<br>2023-01-09<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Legal Flat Rate Envelope<br>28.05<br>24.50<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Legal Flat Rate Envelope Hold For Pickup<br>28.05<br>24.50<br>2023-01-09<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Padded Flat Rate Envelope<br>28.45<br>24.70<br>2023-01-07<br>1-Day<br>Priority Mail Express 1-Day<sup>®</sup> Padded Flat Rate Envelope Hold For Pickup<br>28.45<br>24.70<br>2023-01-09<br>1-Day<br>Priority Mail<sup>®</sup><br>28.75<br>24.81<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Hold For Pickup<br>0.00<br>24.81<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Large Flat Rate Box<br>22.45<br>19.95<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Large Flat Rate Box Hold For Pickup<br>0.00<br>19.95<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Medium Flat Rate Box<br>17.05<br>15.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Medium Flat Rate Box Hold For Pickup<br>0.00<br>15.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Box<br>10.40<br>9.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Box Hold For Pickup<br>0.00<br>9.00<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box A<br>0.00<br>14.34<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box A Hold For Pickup<br>0.00<br>14.34<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box B<br>0.00<br>23.31<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Regional Rate Box B Hold For Pickup<br>0.00<br>23.31<br>2023-01-10<br>2-Day<br>Priority Mail Flat Rate<sup>®</sup> Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail Flat Rate<sup>®</sup> Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Legal Flat Rate Envelope<br>10.20<br>8.80<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Legal Flat Rate Envelope Hold For Pickup<br>0.00<br>8.80<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Padded Flat Rate Envelope<br>10.60<br>9.20<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Padded Flat Rate Envelope Hold For Pickup<br>0.00<br>9.20<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Gift Card Flat Rate Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Gift Card Flat Rate Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Small Flat Rate Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Window Flat Rate Envelope<br>9.90<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Window Flat Rate Envelope Hold For Pickup<br>0.00<br>8.50<br>2023-01-10<br>2-Day<br>Priority Mail<sup>®</sup> Cubic<br>0.00<br>11.23<br>2023-01-10<br>2-Day<br>Parcel Select Ground<sup>™</sup><br>14.38<br>Parcel Select Ground<sup>™</sup> Hold For Pickup<br>14.38<br>Parcel Select Ground<sup>™</sup> Cubic<br>8.85<br>Media Mail Parcel<br>6.17<br>Library Mail Parcel<br>5.84<br>Bound Printed Matter Flats<br>3.39<br>Bound Printed Matter Flats Hold For Pickup<br>3.39<br>Bound Printed Matter Parcels<br>4.62<br>Bound Printed Matter Parcels Hold For Pickup<br>4.62<br>USPS Retail Ground<sup>®</sup><br>23.40<br><br>',<br>)- This reply was modified 3 years, 5 months ago by warp929.