Hi,
I am trying to directly add Copy Right notice in footer.liquid because the theme settings don’t offer any option to automatically update the year every year. Copy right notice below:
COPYRIGHT © 2013 - 2023 PERFECTMAKEUPMIRRORS.COM. ALL RIGHTS RESERVED.
My idea is to add the notice above directly in the footer code below. But I need help to add the current year in place of “2023” in the notice below. Is there any date object in LIQUID that I can use there?
<div class="{% if section.settings.show_payment %}text-left small--text-center{% else %}text-center{% endif %}">
{%- comment -%}{{ section.settings.copyright_text }} {%- endcomment -%}
<p class="copy-right-text">COPYRIGHT © 2013 - 2023 PERFECTMAKEUPMIRRORS.COM. ALL RIGHTS RESERVED.</p>
{% if section.settings.show_designby %}<span class="designBy">{% if section.settings.copyright_text != blank %}<br />{% endif %}Designed by <a href="https://www.adornthemes.com" target="_blank">AdornThemes</a></span>{% endif %}
</div>