How can I modify footer copyright info on my website?

Topic summary

A user seeks to modify the copyright text in their website footer but is unsure how to proceed. An attached screenshot shows the current footer layout.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes
  • Click “…” (or “Actions”) → Edit default theme content (for text changes) or Edit code (for deeper customization)
  • For Shopify 2.0 themes: locate the “footer.liquid” file in the Sections folder and find “copyright__content”
  • Replace existing code with custom text or HTML markup as needed

Key points:

  • Different approaches depend on whether changing just the “All rights reserved” text or the entire “© 2023…” string
  • Code snippet and reference image provided showing exact placement
  • User asks follow-up questions about which specific code to replace and how to implement custom text
  • Additional thread referenced for translating store name into different languages, suggesting related customization needs

The conversation remains ongoing as the user seeks clarification on exact replacement syntax.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

Hi, I’m trying to change my copyright in the footer for my website however I am unable to change it, is there a code I am able to use to change it? please see the attached image for better understanding.

1 Like

Hi @A2L1

Are you talking about the “All right reserved” part? If so, please follow the instructions below

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “…” and then “Edit default theme content”.
  • In the search bar, find the “Powered by Shopify”, you then change the text

If you are talking about the whole “@2023…”, you need to the edit the code depending on your theme

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

4 Likes

Hi @Made4uo-Ribe , how would I be able to do the code? Thank you!

Hi @A2L1

If you have Shopify 2.0 Free themes, you can follow the instructions below

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Section” folder, click on “footer.liquid” file, then find the “copyright__content”
  • You can replace the code shown below
<small>© {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url -}}
        </small>
        <small>{{ powered_by_link }}</small>
  • Refer to image below for placement

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

2 Likes

Hi, @Made4uo-Ribe , thank you for this, what code do I replace this with? Am I able to replace this with what I want to show on the website?

Oh. Sorry I didn’t get what you want to do? Depending on what you want to show, you need to have it html format if you are replacing it to something other than a text

You can find an example is this thread.