HomeHome Product Discus... Product Discus...SmithCartSmithCartShip To - Surpressing Ship To - Surpressing
Previous
 
Next
New Post
3/17/2011 2:35 PM
 

Is there anyway to hide the Country Text Box / Drop down on the Ship To Page. Only want State/Region to appear during the checkout process.

DotNetNuke 5.6.1

Smith Cart 4.22

 
 Login to download attachment
New Post
3/18/2011 4:13 AM
Accepted Answer 

Yes, if you open up Step1.ascx on/around line 81 is the following code:

<asp:DropDownList ID="ddlCountry" Width="200px" TabIndex="9" runat="server" OnSelectedIndexChanged="ddlCountry_SelectedIndexChanged" AutoPostBack="True" AppendDataBoundItems="true">

Just add visible="false" (highlighted in yellow below) like this:

<asp:DropDownList ID="ddlCountry" Width="200px" TabIndex="9" runat="server" OnSelectedIndexChanged="ddlCountry_SelectedIndexChanged" AutoPostBack="True" AppendDataBoundItems="true" visible="false">


Thanks,

Christian

 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartShip To - Surpressing Ship To - Surpressing