Add a currency selector to your store
Follow the steps below to add a currency selector for your store.
A basic understanding of HTML and CSS code may be required to format the currency selector to your liking. If you can't seem to figure it out, we offer an Expert Install Service where we take care of the installation for you. Check out this article for more information.
1. From your Shopify admin, click Online Store, then click Themes.
2. Find the theme you want to edit, click the ... button, then click Edit code.

3. Click on the theme.liquid file that's located in the layout folder.

4. Copy the following code snippet.
5. Locate your theme's header, and paste the code where you think it fits best. Since every theme is different, you may have to experiment to find the right place.
6. Optional: Update currency selector formatting
Note: This setup will only work on the Dawn theme.
Follow this example using the Dawn theme
Add CSS styles
1. Under the Assets folder, click on the base.css file.

2. Apply the following CSS to the bottom of the file.
3. Save changes.
Add currency selector to theme
1. In the theme code, click on the header.liquid file under the Sections folder.

2. Using the keyboard shortcuts (ctrl F or ⌘ F), search for the cart icon by looking up the following line of text.
3. Copy the snippet of code.
4. Insert the currency selector snippet right after the line of code you found on Step 2. This will place the currency selector to the left of the search icon.

5. Save your changes.
6. Next, locate the header-drawer.liquid file under the Snippets folder.

7. Use the snippet to search for where the mobile navigation starts.
8. There will be two instances of this code. Locate the second instance (around line 126).

About ten lines of code below this, you will see {%- endfor -%}.
9. Insert the currency selector snippet below that line. This will place the currency selector in the mobile navigation menu.

10. Save changes.
Last updated