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. 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:

  1. From your myShopify Admin Homepage, click on Settings > Choose General.

  2. In the Store currency section, click the Change formatting link. currency formatting

  3. In the HTML with currency field, wrap the existing content in an HTML span element with a class name set to money.
    E.g. If your store currency is European Monetary Unit (EUR), currency formatting is:

    <span class=money>€{{amount}} EUR</span>
    
  4. 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 is European Monetary Unit (EUR), currency formatting is:

    <span class=money>€{{amount}}</span>
    

    Currency Format

  5. 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.