Hello,
I’m looking to add a footer credit to a site that I’ve built on the Cascade theme, but I’m not entirely sure where in the liquid I should do this. I generally add “Site: Chewy Creative” with the business name linking to my website.
Would anyone have some insight on setting this up with Cascade theme? The current site is live but password protected. www.amovino.ca (pass: amovinowine) – the site credit would be on the main website, not the password page.
Thank you in advance
Go to Online store > Themes > Actions > Edit code (HTML/CSS). Open Layouts folder, then theme.liquid file.
Search for the class=”copyright” in there. The line will look as follows:
<div class="copyright">
<p role="contentinfo">
{% assign copyright_year = "now" | date: "%Y" %}
{% assign X = 'layout.footer.copyright' | t: year: copyright_year, shop_name: shop.name %}
{% if X.size > 0 %}{{ X }}
{% else %}© {{ copyright_year }} Computers. All rights reserved.
{% endif %}
{% if settings.footer_powered %} {{ powered_by_link }}
{% endif %}</p>
</div>
You can edit the elements to display your own custom text.
Save changes