How can I modify the copyright text on my Brooklyn theme website?

Hi,

How do I change the copyright text “© 2021, Myozco” on the following website. Theme is Brooklyn.

https://myozco-02.myshopify.com/

pw: Myozco123456

Hi @leehew , welcome to Shopify community.

you can change the copyright text in Brooklyn theme, by modifying the file footer.liquid of your theme.

Identify the line by searching for the content site-footer__copyright-content and you’ll see a code similar to this


© {{ 'now' | date: '%Y' }}, {{ shop.name | link_to: routes.root_url }}
{{ powered_by_link }}

Then what to modify depends on your needs, but suppose you’d like to add some text after the shop name, you can write something similar to


© {{ 'now' | date: '%Y' }}, {{ shop.name | append: " - Inspired by the Caffeine, Driven by Passion" | link_to: routes.root_url }}
{{ powered_by_link }}