Skip to content

Remove the "Powered by Shopify" Text

Shopify adds a small "Powered by Shopify" link in your footer by default. We generally recommend keeping it as a trust signal—customers instantly recognize the Shopify platform. Still, if you prefer a fully unbranded footer, you can hide it safely with a short CSS rule.

Steps

  1. Open the theme editor (Online Store → Themes → Customize).
  2. Click Theme settings (left sidebar gear icon).
  3. Open the Custom CSS panel.
  4. Scroll to the end (or below existing code) and paste the following:
css
a[rel="nofollow"][href*="shopify.com"] {
  display: none;
}
  1. Click Save.

Reverting

Remove the snippet above from Custom CSS and save— the link will appear again immediately.