Hi, i want to add the website name after @2026 in the footer, it was deleted by accident.
Thanks in Advance.
www.soothetech.shop
…
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.
- Go to Online Store → Themes
- Click ⋯ → Edit code
- Open
sections/footer.liquid(orfooter-group.liquid, depends on theme) - Find the copyright line, usually like this:
© {{ 'now' | date: '%Y' }}
Add your website name after it
© {{ 'now' | date: '%Y' }} {{ shop.name }}





