-
- Ninereeds

-
Total Posts: 4
Joined: 2008-05-07
|
Hello,
I’m trying to make the following tablerates.csv work, using your method with the latest version of Magento :
“Country”,"Region/State","Zip/Postal Code","Order Subtotal (and above)","Shipping Price”
“US”,"NY",10005,20,10
“US”,"AK",55000,20,7
“US”,"AK",56000,20,8
After importation of this files I proceed to checkout as a guest with, for example with 10005 as a zipcodes for the state of New York and it doesn’t work ...
I also replaced :
$region = $read->quote($request->getDestRegionId());
$country = $read->quote($request->getDestCountryId());
$zip = $read->quote($request->getDestPostcode());
by
$bind = array(
‘zip’ => $read->quote($request->getDestPostcode()),
‘region’ => $read->quote($request->getDestRegionId()),
‘country’ => $read->quote($request->getDestCountryId())
);
But it didn’t work either....
Could you help me ? I’m a little lost....
Ninereeds
|