From e93c1decde057f2998f300fd102cd0b041c710f2 Mon Sep 17 00:00:00 2001 From: Andrew Spinks Date: Sat, 31 Mar 2012 16:37:29 +1100 Subject: [PATCH] Change checkout zone so that Austrlia is the default country selected in checkout. --- config/initializers/spree.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config/initializers/spree.rb b/config/initializers/spree.rb index e1671c5590..f9499f988d 100644 --- a/config/initializers/spree.rb +++ b/config/initializers/spree.rb @@ -1,12 +1,15 @@ # Configure Spree Preferences -# +# # Note: Initializing preferences available within the Admin will overwrite any changes that were made through the user interface when you restart. # If you would like users to be able to update a setting with the Admin it should NOT be set here. # -# In order to initialize a setting do: +# In order to initialize a setting do: # config.setting_name = 'new value' Spree.config do |config| # Example: # Uncomment to override the default site name. # config.site_name = "Spree Demo Site" + + config.shipping_instructions = true + config.checkout_zone = 'Australia' end