FaqsGeneric
Change the copyright text at the footer
4 min read

Show/hide the copyright text in your footer
To show or hide copyright at the bottom of your Shopify store, simply check the Footer section settings in your theme editor, and check/uncheck the corresponding option.

How to remove (or edit) Power by Shopify
Remove (or edit) Powered by Shopify using Shopify admin
- From your Shopify admin, go to Online Store > Themes.
- Find the theme that you want to edit, and then click Actions > Edit default theme content.
- In the Search translations box, do either of the following:
- If this is the first time that you change this text, then enter powered in the search box.
- If you changed this text previously, navigate directly to the "Powered by Shopify" message by clicking ..., and then select Checkout & System. The "Powered by Shopify" message is in the Links section of Checkout & System.


Remove (or edit) Powered by Shopify using Edit code
- In your Shopify admin, go to Online store > Themes > Actions > Edit code.
- In the Sections folder, open the footer.liquid file.
- Hit Ctrl + F (Command + F) to open the code search box > Search power_by_link.

- If you want to remove Powered by Shopify, delete the following code:
<p>{{ powered_by_link }}</p>- If you want to change the text, remove powered_by_link and add the text you would like to show, using ' '. Example:
<p>{{ 'All rights reserved' }}</p>How to edit the shop name text in the copyright
Edit the shop name text
- In your Shopify admin, go to Online store > Themes > Actions > Edit code.
- In the Sections folder, open the footer.liquid file.
- Hit Ctrl + F (Command + F) to open the code search box > Search shop.name. You will then see the code for copyright text in the footer section.
{% if section.settings.show_copyright %}
<p class="site-footer__copyright">© {{ 'now' | date: "%Y" }}, <a class="link-underline " href="{{ routes.root_url }}">{{ shop.name }}</a></p>
<p>{{ powered_by_link }}</p>
{% endif %}{% if section.settings.show_copyright %}
<p class="site-footer__copyright">© {{ 'now' | date: "%Y" }}, <a class="link-underline " href="{{ routes.root_url }}">{{ 'Zest theme' }}</a></p>
<p>{{ powered_by_link }}</p>
{% endif %}
Change the link of the shop name text
href="{{ routes.root_url }}"href="a page URL" target="_blank"href="a page URL" target="_blank" rel="noopener noreferrer"{% if section.settings.show_copyright %}
<p class="site-footer__copyright">© {{ 'now' | date: "%Y" }}, <a class="link-underline" href="https://themes.shopify.com/themes/zest" target="_blank" rel="noopener noreferrer">{{ 'Zest theme' }}</a></p>
<p>{{ powered_by_link }}</p>
{% endif %}
Last updated