Version 1.1.6
This update was released on the 30th of May 2018.
Changelog
- Fixed password page (after 1.1.5)
- Added rich text for newsletters, in order to be able link to policy page
How to apply the password page fix
Important! Do this step only if you have the password page broken and are updating from 1.1.5
- Go to the theme editor (read this article for more info)
- Choose /assets/css_naked.scss.liquid and completely replace the file with the contents of the following file: https://pastebin.com/raw/Rcmx9NT7
-
Choose /templates/password.liquid and look after this line of code (at line 26):
{% include 'head_fonts' %}
Remove it!
- Save all files!
How to add links to your privacy policy page
If you are having a newsletter form on your site, you should probably add links to your privacy policy page in these places, regarding GDPR compliance.
Adding text in the homepage newsletter section
- Go to the theme editor
-
Choose /sections/home_newsletter and look for the these three lines:
{% unless section.settings.subtitle == blank %} <h4 class="subtitle">{{ section.settings.subtitle }}</h4> {% endunless %}
-
Replace these lines entirely with the following:
<p>Stay up to date with our latest offers! <br>Read our <a href="http://yoursite.com/privacy-policy">privacy policy</a>.</p>
- Replace the link http://yoursite.com/privacy-policy with a link to your own privacy policy page.
- Save the file!
Adding text in footer newsletter block
- Go to the theme editor.
-
Choose /sections/home_newsletter and look for the these three lines:
{% if block.settings.caption %} <div class="caption">{{ block.settings.caption }}</div> {% endif %}
-
Replace these lines entirely with the following:
<p>Stay up to date with our latest offers! <br>Read our <a href="http://yoursite.com/privacy-policy">privacy policy</a>.</p>
- Replace the link http://yoursite.com/privacy-policy with a link to your own privacy policy page.
- Save the file!
Adding text in the password page
- Go to the theme editor.
-
Choose /templates/password.liquid and look for the these three lines:
</div> </main> </div>
-
Right before the </main> block, insert your paragraph:
<p>Please read our <a href="http://yoursite.com/privacy-policy">privacy policy</a>.</p>
- Replace the link http://yoursite.com/privacy-policy with a link to your own privacy policy page.
- Save the file!