Quote Originally Posted by tj1 View Post
Issac, following on my post above. I just went to your website to see if you had international shipping working, but got the usual
'Clevershoppers.com does not ship to this address'

I used a UK and a Canadian address. Not sure if you really don't ship to the UK and Canada or if GC just failed.
Actually my international was working but I just realized as a result of your post that my array is wrong. Thanks for pointing that to me. This is from the updated Zen Cart usps.php file:
PHP Code:
    $this->types = array('Express' => 'Express Mail',
        
'First Class' => 'First-Class Mail',
        
'Priority' => 'Priority Mail',
        
'Parcel' => 'Parcel Post',
        
'Media' => 'Media Mail',
        
'BPM' => 'Bound Printed Material',
        
'Library' => 'Library'
        
);

    
$this->intl_types = array(
        
'Global Express' => 'Global Express Guaranteed',
        
'Global Express Non-Doc Rect' => 'Global Express Guaranteed Non-Document Rectangular',
        
'Global Express Non-Doc Non-Rect' => 'Global Express Guaranteed Non-Document Non-Rectangular',
        
'Express Mail Int' => 'Express Mail International (EMS)',
        
'Express Mail Int Flat Rate Env' => 'Express Mail International (EMS) Flat Rate Envelope',
        
'Priority Mail International' => 'Priority Mail International',
        
'Priority Mail Int Flat Rate Env' => 'Priority Mail International Flat Rate Envelope',
        
'Priority Mail Int Flat Rate Box' => 'Priority Mail International Flat Rate Box',
        
'First-Class Mail Int' => 'First-Class Mail International'
         
); 
Based on the above information my array should be Priority Mail International instead of Priority Mail Int. It would be nice if things would have been consistent. Please retest international shipping again.