All About Web Co. logo
All About Web Co.

Shopify Copyright Footer. All You Need to Know

Author: Serhiy Manuilo, Publication Date: Oct 12, 2024, Last Updated: Oct 12, 2024
by Serhiy Manuilo, Oct 12, 2024
The article image: "Shopify Copyright Footer. All You Need to Know"

To manage the copyright footer in Shopify you need to modify a theme source code. This might be a bit problematic if you have no programming skills. However there’s nothing complicated, and even if you can’t do it, AI tools can be a good option.

Let’s see how to add, edit, remove a copyright notice, and dynamically change the copyright year.

Right before we start: This article describes the copyright notice management specifically for Shopify. If you don’t own a Sopify store or want to learn more about the subject, this article covers it in general.

Important: the instructions below contain actions that require an editing of a Shopify store (most likely live) source code. To prevent issues, copy the entire file contents before editing the code and store it somewhere until you verify that the changes have been made properly and existing functionality hasn’t been broken.

Follow these 11 steps to add a copyright notice to a footer:

  1. Navigate to Online Store > Themes

  2. Click on Customize Navigate to the Shopify store theme editor

  3. Click on the ellipsis menu at the top and select the Edit code option Navigate to the Shopify store theme code editor

  4. Search for footer

  5. Open the footer.liquid file by clicking on it

  6. Chose the right place in code to add the copyright notice and add the following code (don’t forget to edit the copyright format as you need)

    <small class="copyright__content">
      Copyright &copy; 2022-{{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url -}}. All rights reserved
    </small>

    Here we have two Liquid variables:

    • The current year {{ 'now' | date: '%Y' }}
    • The store link with its name {{ shop.name | link_to: routes.root_url -}}

    Usage of these variables is not mandatory, you can replace the text that contains the variables with the following one: “Copyright © 2022-2025, My Store Name. All rights reserved”.

    In this case, you must manually update the current year when the new year comes. It’s the same thing with the store name, if you change it in the general settings, the name in the copyright notice remains the same.

  7. Save the changes in the footer.liquid file

  8. Search for section-footer

  9. Open the section-footer.css file by clicking on it

  10. Add the copyright notice CSS styles

  11. Save changes in the section-footer.css file

  12. Verify if the copyright has been added to the footer

Follow these steps to edit a copyright notice:

  1. Navigate to Online Store > Themes
  2. Click on Customize Navigate to the Shopify store theme editor
  3. Click on the ellipsis menu at the top and select the Edit code option Navigate to the Shopify store theme code editor
  4. Search for footer
  5. Open the footer.liquid file by clicking on it
  6. Click Ctrl (or Cmd) + F, search for copyright, and edit the default copyright text as you need
    <small class="copyright__content">
      &copy; {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url -}}.
    </small>
    I described the Liquid variables {{ 'now' | date: '%Y' }} and {{ shop.name | link_to: routes.root_url -}} in the section above.
  7. Save the changes in the footer.liquid file
  8. Search for section-footer
  9. Open the section-footer.css file by clicking on it
  10. Look for the copyright CSS styles and edit them as you need
  11. Save changes in the section-footer.css file
  12. Verify if the changes you’ve made have been applied

Follow these steps to remove a copyright from a footer:

  1. Navigate to Online Store > Themes
  2. Click on Customize Navigate to the Shopify store theme editor
  3. Click on the ellipsis menu at the top and select the Edit code option Navigate to the Shopify store theme code editor
  4. Search for footer
  5. Open the footer.liquid file by clicking on it
  6. Click Ctrl (or Cmd) + F, search for copyright, and remove the selected code
  7. Save the changes

By default, Shopify themes already have the automatically updated copyright year.

However, you might have a theme form third-party developers, which has only a static copyright notice and as a result a static copyright year. Consequently, you need to change it every year.

If you look at the default code from the Shopify Dawn theme you can see this piece of code {{ 'now' | date: '%Y' }}:

<small class="copyright__content">
  &copy; {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url -}}.
</small>

This is a Liquid Date variable, where ‘now’ takes the current date and date: ‘%Y’ returns only the year of this date as a text.

For instance, this copyright notice Copyright © 2022-2025, My Shop. All rights reserved with the date variable and the HTML copyright symbol (see the next section), would look like this Copyright &copy; 2022-{{ 'now' | date: '%Y' }}, My Shop. All rights reserved

OR like this in code

<small class="copyright__content">
  Copyright &copy; 2022-{{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url -}}. All rights reserved
</small>

Don’t hesitate to read this post to learn more about this topic in general: How to Automatically Update Copyright Year. Complete Guide

Copyright symbol can be added in two ways: as plain text or as HTML code.

As you can see, in Shopify the only way to add/edit the copyright text, is to modify the store source code, as a result, you can use either the plain text or the HTML code copyright symbol. I recommend using the latter.

This is a copyright notice format formula:

[1] Copyright [2] © [3] YYYY or YYYY - YYYY [4] Entity name [5] Rights statement

  1. The “Copyright” word (Optional)
  2. The copyright symbol © (Required)
  3. Current year 2025 or a range of years 2022-2025 (Required)
  4. An entity name: an author’s full name or a company name or a website domain name (Required)
  5. A rights statement: All rights reserved, Some rights reserved, No rights reserved (Optional)

According to the formula, the simplest variant is ”© 2025 All About Web Co.” and the fullest one is “Copyright © 2022-2025 All About Web Co. All Rights Reserved”. It can extended with “Powered by {An entity name}” if needed”

You can read more about the copyright format and get more examples here: Copyright Footer - Examples, HTML, Symbol, Format and More