I want to add the website name after @2026 in the footer

Hi, i want to add the website name after @2026 in the footer, it was deleted by accident.
Thanks in Advance.

www.soothetech.shop

Please go to your store admin > Settings > General > Store details, hover, and click on the edit icon, then add your store name.

it was deleted from footer.liquid

Open your footer.liquid file the line contains this code

{{ 'now' | date: '%Y' }}

Add the code below next to , in the same line of the above code, save the file, and check again.

{{ shop.name | link_to: routes.root_url -}}

Best regards,
Dan from Ryviu: Product Reviews App

Hi @rubi06 ,
No worries this is an easy fix
You just need to update the footer copyright text.

  1. Go to Online Store → Themes
  2. Click ⋯ → Edit code
  3. Open sections/footer.liquid (or footer-group.liquid, depends on theme)
  4. Find the copyright line, usually like this:
© {{ 'now' | date: '%Y' }}

Add your website name after it

© {{ 'now' | date: '%Y' }} {{ shop.name }}

Hi @rubi06,