HomeHome Product Discus... Product Discus...SmithCartSmithCartProblem entering UK postcode in Shipping ZoneProblem entering UK postcode in Shipping Zone
Previous
 
Next
New Post
3/30/2011 6:09 AM
 

I have a list of UK postcodes which I would like to EXCLUDE from shipping, i.e we dont ship there.

 

The list is in the format of for example:

 

BH1
BH2
FY2

How would I accomplish this in SmithCart - would I need to add the other combinations except my exclusions?

 

Also, when entering a Zip code, even though the drop down is set to United Kindom, the validation prompts for a number indicating "BH1" is not valid - this is obviously incorrect as that is the UK postal code format

 

Thanks

 
New Post
4/8/2011 7:23 PM
 
I was able to replicate your issue. I'm sending in to programming and we will post a hotfix to the cart downloads page as soon as its available.


Kevin
 
New Post
4/8/2011 7:29 PM
 

To fix the issue open the "ManageShipping.ascx" file in the \desktopmodules\smith.buynow folder and goto line 718 and replace the zip code table row with the following:

<tr align="left">
                <td class="SmithProdText">Postal Code:</td>
                <td>
                    <asp:TextBox ID="txtZipCode" runat="server" MaxLength="15" Width="100" />
                    &nbsp;&nbsp;
                    <asp:RequiredFieldValidator ID="rftxtZipCode" ControlToValidate="txtZipCode" runat="server" Text="Required" Display="Dynamic"/>
                    <%--<asp:CompareValidator ID="CompareValidator4" runat="server" ControlToValidate="txtZipCode" ErrorMessage="Enter a number" Operator="DataTypeCheck" Type="Double" />--%>
                </td>
            </tr>


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartProblem entering UK postcode in Shipping ZoneProblem entering UK postcode in Shipping Zone