Quote Originally Posted by split63 View Post
I spoke to soon.
For the US, we offer only USPS priority. When I checked a US location, the shopping cart no longer listed a value for USPS priority....it was just missing with no rate estimate at all.

This is most likely my fault for lack of full disclosure

USA locations: USPS priority only
International locations: FedEx<$40, then FedEx only. FedEx>=$40, USPS FC and FedEx
The name to allow can be changed in the:
/includes/modules/shipping/usps.php
Code:
if (preg_match('#Priority Mail International#i', $type_rebuilt) && $_SESSION['usps_first_class'] > 40) {
while the session variable is reading usps_first_class it is just a marker so its name is not important, but for clarity you might change it in both files to:
$_SESSION['usps_priority']

that is up to you ...