Rank: Member
Joined: 2/21/2007(UTC) Posts: 1,113
|
I was expecting the zip code dash issue -- where FedEx will not return a Ground/Home Delivery rate if a customer has entered a 9-digit zip code with a dash -- to be fixed in SP3. The added code that you provided to remove the dash still needs to be there in both the Checkout Page and the Shipping Estimate page |
|
|
|
|
Rank: Member
Joined: 3/3/2006(UTC) Posts: 1,737
|
From my notes (can't find the thread):
Sorry this took so long. It has been hectic around here! Here is the update to take care of this issue. open your Checkout.aspx.vb file and make the following changes:
' Comment or delete the first line, then add the second 'a.PostalCode = Me.ShippingpostalCodeField.Text.Trim a.PostalCode = Me.ShippingpostalCodeField.Text.Trim().Replace("-", "")
This will correct the checkout page. To fix the popup window on the cart page, edit your EstimateShipping.aspx.vb file (found in the site root) and make the following changes:
'Basket.ShippingAddress.PostalCode = Me.ZipCodeField.Text.Trim Basket.ShippingAddress.PostalCode = Me.ZipCodeField.Text.Trim.Replace("-", "") |
Optimists invent airplanes, Pessimists buy parachutes. |
|
|
|
Rank: Member
Joined: 3/1/2006(UTC) Posts: 1,142
|
This will be addressed in SP3.1 |
Justin Etheredge Senior Software Engineer BVSoftware |
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.