You can easily remove or replace the “Powered by Shopify” text that appears in your store’s footer.
Steps:
Go to your Shopify admin → Online Store → Edit code.
Open the footer.liquid file.
Search for powered by Shopify. You’ll find a line of code that looks like this:
<p>© <span class="date">{{ 'now' | date: "%Y" }}</span> {{ shop.name }}, {{ powered_by_link }}</p>
What this code means:
© → 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>© <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! 🎉