How to remove "Powered by Shopify" from the footer
Hide the "Powered by Shopify" link in Avante using Custom CSS — the most reliable method. Also covers editing theme code as an alternative.
Last updated
Was this helpful?
Hide the "Powered by Shopify" link in Avante using Custom CSS — the most reliable method. Also covers editing theme code as an alternative.
By default, Shopify adds a "Powered by Shopify" link to the bottom of your store's footer.

Many merchants prefer to remove it to keep their storefront completely white-labeled and focused solely on their own brand. There are two ways merchants usually try to do this, but we highly recommend the CSS method as the only way to truly remove the link.
Hiding the link via the theme's global Custom CSS is the fastest, safest, and most permanent method. Why is this the best way?
Targeted and Safe: The code specifically targets the .copyright__content class. This means it only hides the Shopify link in your footer. If you manually add a link to Shopify in your blog posts or About Us page, those links will remain perfectly visible.
Works for all languages at once: If your store is multilingual (Shopify Markets), this single CSS snippet hides the link across all languages instantly.
Update-safe: It won't be overwritten during minor theme updates.
Open your Theme Editor (Customize).
Go to Theme settings (the gear icon on the left) → Custom CSS.
Paste the following snippet:
Click Save.

Note: Your store's copyright name and year will remain fully visible. Only the Shopify link is hidden.
You might see tutorials suggesting you remove this text using Shopify's language editor (Edit default theme content) by entering a single space.

In our testing, this doesn't reliably remove the link — Shopify often forces the default text back, or the link remains visible even after saving.

Other limitations of this method, even when it does work:
Manual repetition: If you use Shopify Markets, the change must be repeated manually for every single language your store uses.
It only works on this specific field: there's a separate "Powered by Shopify HTML" field for your store's password-protected "Opening soon" page, which needs the same edit repeated separately.
Because of these limitations, we recommend skipping this method entirely and using the Custom CSS snippet above.
If you'd rather remove the link at the code level instead of using CSS:
Go to Online Store → Themes.
Click the three dots (...) next to your theme → Edit code.

In the sidebar, open Sections → footer.liquid.

Press Ctrl+F (Windows) or Cmd+F (Mac) and search for powered_by_link.

Delete the entire line containing that tag — it will look like {{ powered_by_link }}.

Click Save.
Note: This directly edits a core theme file. It will be overwritten on the next theme update, and you'll need to re-apply it manually. The CSS method above doesn't have this problem — use it whenever possible.
Shopify: Remove "Powered by Shopify" message — official guide
Last updated
Was this helpful?
Was this helpful?
.copyright__content a[href*="shopify.com"] {
display: none !important;
}