Preparing your Shopify Store
Before installing the theme to start working on your new store, first you have to make some configurations to avoid unexpected problems, mainly currencies and customer account login related.
Please strictly follow the steps described in this chapter before you go to the next.
Enable Account Login
For customer to start buying your products, first they need to have an account. To enable account login, please do the following:
- From your myShopify Admin Homepage, go to
Settings
/Checkout
. - In the block Customer accounts select Accounts are optional.
- Click Save.
Configure Currency
Your store’s currency is the currency that you have set up on the General settings page. This currency will be displayed throughout products on your store. To configure the currency you want to display, please do the following:
From your myShopify Admin Homepage, click on
Settings
> ChooseGeneral
.In the
Store currency
section, click theChange formatting
link.In the
HTML with currency field
, wrap the existing content in an HTML span element with a class name set tomoney
.
E.g. If your store currency isEuropean Monetary Unit (EUR)
, currency formatting is:<span class=money>€{{amount}} EUR</span>
In the HTML without currency field, enter the exact same content that you entered in the HTML with currency field. Adding the currency descriptor to both formats will help to differentiate between currencies that use the dollar sign (€).
Eg. If your store currency isEuropean Monetary Unit (EUR)
, currency formatting is:<span class=money>€{{amount}}</span>
Click Save.
WARNING
Do not use quotation marks around the word ‘money’, as adding them in might result in JavaScript errors.
For more details, please go to Shopify Official Source’s Shopify Currency Setting.