> For the complete documentation index, see [llms.txt](https://staylime.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://staylime.com/docs/avante-themes/faq/theme-setup/how-to-remove-powered-by-shopify-from-the-footer.md).

# How to remove "Powered by Shopify" from the footer

By default, Shopify adds a **"Powered by Shopify"** link to the bottom of your store's footer.&#x20;

<figure><img src="/files/fD4E6miQhdJQLymXieo3" alt=""><figcaption></figcaption></figure>

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.

***

### The Reliable Way: Custom CSS (Recommended)

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.

#### How to do it:

{% stepper %}
{% step %}
Open your Theme Editor (Customize).
{% endstep %}

{% step %}
Go to **Theme settings** (the gear icon on the left) → **Custom CSS**.
{% endstep %}

{% step %}
Paste the following snippet:

```css
.copyright__content a[href*="shopify.com"] { 
  display: none !important; 
}
```

{% endstep %}

{% step %}
Click **Save**.

<figure><img src="/files/H2dxvNYvJkQlUHtctcrX" alt=""><figcaption></figcaption></figure>

{% hint style="warning" %}
***Note:** Your store's copyright name and year will remain fully visible. Only the Shopify link is hidden.*
{% endhint %}
{% endstep %}
{% endstepper %}

***

### Why the Native Method (Edit Default Theme Content) Fails

You might see tutorials suggesting you remove this text using Shopify's language editor (**Edit default theme content**) by entering a single space.

<figure><img src="/files/CRpRGAIve9NJQmMvG9Me" alt=""><figcaption></figcaption></figure>

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.

<figure><img src="/files/M28eersWjBt5DhjoFJVu" alt=""><figcaption></figcaption></figure>

**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.

***

### Edit the theme code

If you'd rather remove the link at the code level instead of using CSS:

{% stepper %}
{% step %}
Go to **Online Store → Themes**.
{% endstep %}

{% step %}
Click the three dots (...) next to your theme → **Edit code**.

<figure><img src="/files/ciUIF5ZA8OE9Ol5CxNgL" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
In the sidebar, open **Sections → footer.liquid**.

<figure><img src="/files/TlNhj67FMRYjdWMBC6Hx" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
Press `Ctrl+F` (Windows) or `Cmd+F` (Mac) and search for `powered_by_link`.

<figure><img src="/files/jmkmwDx4VPA0sc2FS8Pf" alt=""><figcaption></figcaption></figure>
{% endstep %}

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

<figure><img src="/files/P8Uwnx0ffXWOhsh1mRVP" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
Click **Save**.
{% endstep %}
{% endstepper %}

{% hint style="warning" icon="triangle-exclamation" %}
**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.
{% endhint %}

***

### Related

[Shopify: Remove "Powered by Shopify" message](https://help.shopify.com/en/manual/online-store/themes/customizing-themes/common-customizations/remove-powered-by-shopify-message) — official guide


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://staylime.com/docs/avante-themes/faq/theme-setup/how-to-remove-powered-by-shopify-from-the-footer.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
