kentico_jurajo
-
12/11/2008 12:46:00 AM
RE:E-commerce - Billing address, Default country
Hi,
The change you have made in the store configuration is only for the tax - you select your country where you are selling your products, so appropriate tax can be calculated.
You have to do your need programmatically. The file, you have to change is "ShoppingCartOrderAddresses.ascx" located in "<your web project>/CMSEcommerce\ShoppingCart\". The code, which is affected should be around the line 68. Here is a sample code:
<cms:CountrySelector ID="CountrySelector1" runat="server" UseCodeNameForSelection="true" CountryName="Australia" />
or you can use the country ID from the CMS_Country table:
<cms:CountrySelector ID="CountrySelector1" runat="server" UseCodeNameForSelection="true" CountryID="284" />
Best Regards, Juraj Ondrus
|