PDA

View Full Version : Shipping List with Seperate Continent Lists


grantglendinnin
18-May-2008, 03:40 PM
Hello people.

I've just started to integrate Europe into our system today, eventually.

On the first checkout page, where the user selects their shipping destination, how do I do the following for the 'Country' field list to appear in this format:

Select Country
-------------
Channel Islands
England
Isle of Man
Isle of Wight
Northern Ireland
Scotland
Scottish Islands
Wales
--------------
Austria
Belgium
Czech Republic
Denmark
Estonia
etc
etc

I've been playing around with it all day trying to change the order other than having it alphabetical and it beats me time and time again - I'm betting (and probably hoping) that it's so simplistic that I'd hate to attempt to explain it right now:D

Thanks in advance,
Grant

cdicken
19-May-2008, 07:54 AM
Hi Grant

You can change the order in 'Settings | Locations'. You could even create a dummy country called '---------' if you want in order to get the separator.

grantglendinnin
20-May-2008, 12:05 AM
Hi Grant

You can change the order in 'Settings | Locations'. You could even create a dummy country called '---------' if you want in order to get the separator.

Ah, I knew it - so simple yet so delicate. I'll get onto the case straight away:D

Cheers,
Grant

pinbrook
20-May-2008, 09:51 AM
Hi Grant

You can change the order in 'Settings | Locations'. You could even create a dummy country called '---------' if you want in order to get the separator.
how would you prevent someone from choosing -------- as their destination country?

cdicken
20-May-2008, 04:06 PM
If you don't put that country in a shipping zone, Actinic will basically tell the customer to select a valid country (as long as you have 'If Shipping Band Not Defined' set to 'Do Not Allow Shipping')

grantglendinnin
24-May-2008, 03:37 PM
how would you prevent someone from choosing -------- as their destination country?

Nice question Jo, here's my answer:

No answer given

:D

If you don't put that country in a shipping zone, Actinic will basically tell the customer to select a valid country (as long as you have 'If Shipping Band Not Defined' set to 'Do Not Allow Shipping')

Does this mean I'd have to set shipping weights and shipping bands for every product? Our shipping costs are based on weight alone.

Cheers,
Grant

cdicken
27-May-2008, 09:53 AM
If you don't put that country in a shipping zone, Actinic will basically tell the customer to select a valid country (as long as you have 'If Shipping Band Not Defined' set to 'Do Not Allow Shipping')No - you just make sure that your new '--------' country is not added to any of your shipping zones. By doing that, no-one will be able to select that as their country.

Simon Clark
27-May-2008, 07:10 PM
Hi

how would you get the '------' displayed on the site ?
I have put this in and no seperator shows (just the list of countries)

Thanks

leehack
27-May-2008, 07:15 PM
Setup a country using a series of hyphens as the name I expect.

Simon Clark
27-May-2008, 07:40 PM
done that but they do not show when uploaded.

leehack
27-May-2008, 08:12 PM
Is it included in tax settings?

grantglendinnin
27-May-2008, 11:05 PM
Is it included in tax settings?

Answered my questions before I needed to post for this.

Thanks Lee.

Simon Clark
28-May-2008, 08:59 AM
No - you just make sure that your new '--------' country is not added to any of your shipping zones. By doing that, no-one will be able to select that as their country.

Chris

If you do not add it to a shipping zone, then it does not show up on the site.
Therefore to show it on the site you have to make it "selectable" by the customer which sorts of defeats the object.

regards

cdicken
28-May-2008, 10:19 AM
Ah - good point. I had forgotten that feature.

Erm - I don't know how to stop people selecting '-----' from the list then other than a piece of JavaScript on the 'Next>' button that validates the selection.

dallen
23-Jun-2008, 09:45 AM
Go Design -> Library -> Layout -> Location -> Country.

This brings up the very simple layout for each selection in the Country Drop-Down.

At the top of the layout add something like (depending on your requirement)

<actinic:block if="%3cactinic%3avariable%20name%3d%22CountryCode%22%20%2f%3e%20%3d%3d%20%22AT%22" >
<option value="" disabled="disabled">--------------
</actinic:block>

That will place a selection of "--------------" with a value of "" before Austria (the first non-uk country in your list).