Skip to main content

Remove "Powered by Shopify" from footer

Jalal avatar
Written by Jalal
Updated over a month ago

You can easily remove or replace the “Powered by Shopify” text that appears in your store’s footer.

Steps:

  1. Go to your Shopify adminOnline StoreEdit code.

  2. Open the footer.liquid file.

  3. Search for powered by Shopify. You’ll find a line of code that looks like this:

<p>&copy; <span class="date">{{ 'now' | date: "%Y" }}</span> {{ shop.name }}, {{ powered_by_link }}</p>

What this code means:

  • &copy; → Displays the copyright symbol ©.

  • {{ 'now' | date: "%Y" }} → Automatically shows the current year.

  • {{ shop.name }} → Displays your store name.

  • {{ powered_by_link }} → Displays the “Powered by Shopify” text and link

Customize It

You can remove {{ powered_by_link }} completely, or replace it with your own text. For example:

<p>&copy; <span class="date">{{ 'now' | date: "%Y" }}</span> {{ shop.name }}. All rights reserved.</p>

Video Tutorial

Once you’ve made your edits, click Save — and you’re done! 🎉


Did this answer your question?