How do I Change Copyright Info On Footer in Focal theme

Hi, I am using the Focal theme and I will like to change the copyright info in footer. I will like the change to read Copyright ©2020 “My Store Name”. All Rights Reserved. I will really appreciate any assistance on this. Thank you.

Hi @Folake1 ,

Thank you for reaching out to the Shopify Community!

Please share your store URL here and allow me to check it for you.

Also, you can share the footer.liquid file code.

Thanks & Regards,
Ahsan ANC

Pass: yuglug

there is nothing on your footer like you said.

I think you use some code to hide that one. please share the footer.liquid code so it can be updated.

I did not use any code to hide it. I currently do not have the copyright year on my website and I will like to have it there. The footer on my website is currently exactly as it is the picture you attached and I will like to change that.

please share the footer.liquid file code

#shopify-section-{{ section.id }} .footer { {%- assign border_color = settings.footer_background | color_mix: settings.footer_text_color, 85 -%} --background: {{ settings.footer_background.red }}, {{ settings.footer_background.green }}, {{ settings.footer_background.blue }}; --heading-color: {{ settings.footer_text_color.red }}, {{ settings.footer_text_color.green }}, {{ settings.footer_text_color.blue }}; --text-color: {{ settings.footer_text_color.red }}, {{ settings.footer_text_color.green }}, {{ settings.footer_text_color.blue }}; --border-color: {{ border_color.red }}, {{ border_color.green }}, {{ border_color.blue }}; }
{%- for block in section.blocks -%} {%- capture block_content -%} {%- case block.type -%} {%- when 'image' -%} {%- if block.settings.image != blank -%} {%- endif -%}

{%- when ‘text’ -%}
{%- if block.settings.title != blank -%}

{{ block.settings.title | escape }}

{%- endif -%}

{%- if block.settings.content != blank -%}

{{- block.settings.content -}}
{%- endif -%}

{%- when ‘links’ -%}
{%- assign menu = block.settings.menu -%}

{%- if menu != blank -%}

{{ menu.title }}

{%- endif -%}

{%- when ‘social_media’ -%}
{%- if block.settings.title != blank -%}

{{ block.settings.title | escape }}

{%- endif -%}
{%- if block.settings.content != blank -%} {{- block.settings.content -}} {%- endif -%}

{%- render ‘social-media’ -%}

{%- when ‘newsletter’ -%}
{%- if block.settings.title != blank -%}

{{ block.settings.title | escape }}

{%- endif -%}
{%- if block.settings.content != blank -%} {{- block.settings.content -}} {%- endif -%}

{%- form ‘customer’, id: ‘footer-newsletter’, class: ‘footer__newsletter-form form’ -%}
{%- if form.posted_successfully? -%}

{% render 'icon' with 'form-success' %}

{{ 'footer.newsletter.success' | t }}

{%- else -%} {%- if form.errors -%}
{% render 'icon' with 'form-error' %}

{{ form.errors.translated_fields['email'] }} {{ form.errors.messages['email'] }}

{%- endif -%}
{{ 'footer.newsletter.email' | t }} {% render 'icon' with 'nav-arrow-right', direction_aware: true %}
{%- endif -%} {%- endform -%}
{%- endcase -%} {%- endcapture -%}

{%- if block_content != blank -%}

{{- block_content -}}
{%- endif -%} {%- endfor -%}
{%- if section.settings.show_country_selector and localization.available_countries.size > 1 -%} {%- assign country_selector = true -%} {%- endif -%}

{%- if section.settings.show_locale_selector and localization.available_languages.size > 1 -%}
{%- assign locale_selector = true -%}
{%- endif -%}

{%- if country_selector or locale_selector -%}
{%- form ‘localization’, id: ‘localization_form_footer’, class: ‘footer__cross-border’ -%}
{%- if country_selector -%}

{{ 'footer.general.country' | t }} {{- localization.country.name }} ({{ localization.country.currency.iso_code }} {% if localization.country.currency.symbol %}{{ localization.country.currency.symbol }}{%- endif -%}) {%- render 'icon' with 'chevron', width: 9, height: 6, inline: true -%} {{- 'footer.general.country' | t -}} {%- render 'icon' with 'close' -%}
{%- for country in localization.available_countries -%} {{- country.name }} ({{ country.currency.iso_code }} {% if country.currency.symbol %}{{ country.currency.symbol }}{%- endif -%}) {%- endfor -%}
{%- endif -%}

{%- if locale_selector -%}

{{ 'footer.general.language' | t }} {{- localization.language.endonym_name | capitalize -}} {%- render 'icon' with 'chevron', width: 9, height: 6, inline: true -%} {{- 'footer.general.language' | t -}} {%- render 'icon' with 'close' -%}
{%- for language in localization.available_languages -%} {{- language.endonym_name | capitalize -}} {%- endfor -%}
{%- endif -%} {%- endform -%} {%- endif -%}

{{ shop.name }} {{ powered_by_link | replace: ‘<a’, ‘<a class=“link–faded”’ }}

{%- if section.settings.show_payment_icons -%}

{{ 'footer.general.we_accept' | t }}
{% assign enabled_payment_types = 'visa,master,paypal,american_express,google_pay,maestro' | remove: ' ' | split: ',' %} {% for type in enabled_payment_types %} {{ type | payment_type_svg_tag }} {% endfor %}
{%- endif -%}

{%- if section.settings.show_cookie_bar -%}

{%- if section.settings.cookie_bar_title != blank -%}

{{ section.settings.cookie_bar_title }}

{%- endif -%}

{%- if section.settings.cookie_bar_content != blank -%}
{{- section.settings.cookie_bar_content -}}
{%- endif -%}

{{ 'footer.cookie_bar.accept' | t }} {{ 'footer.cookie_bar.decline' | t }}
{%- endif -%}

{% schema %}
{
“name”: “Footer”,
“class”: “shopify-section–footer”,
“max_blocks”: 5,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_payment_icons”,
“label”: “Show payment icons”,
“default”: true
},
{
“type”: “header”,
“content”: “Country/region selector”,
“info”: “To add a country/region, go to your currency settings.
},
{
“type”: “checkbox”,
“id”: “show_country_selector”,
“label”: “Show country/region selector”,
“default”: true
},
{
“type”: “header”,
“content”: “Language selector”,
“info”: “To add a language, go to your language settings.
},
{
“type”: “checkbox”,
“id”: “show_locale_selector”,
“label”: “Show language selector”,
“default”: true
},
{
“type”: “header”,
“content”: “Customer privacy bar”
},
{
“type”: “checkbox”,
“id”: “show_cookie_bar”,
“label”: “Show privacy bar”,
“info”: “Privacy bar will only be visible if it fulfills the conditions of the Shopify Customer Privacy API”,
“default”: false
},
{
“type”: “text”,
“id”: “cookie_bar_title”,
“label”: “Title”,
“default”: “Cookie policy”
},
{
“type”: “richtext”,
“id”: “cookie_bar_content”,
“label”: “Content”,
“default”: “

I agree to the processing of my data in accordance with the conditions set out in the policy of Privacy.


}
],
“blocks”: [
{
“type”: “image”,
“name”: “Image”,
“settings”: [
{
“type”: “image_picker”,
“id”: “image”,
“label”: “Image”,
“info”: “300 x 300px .png recommended”
},
{
“type”: “range”,
“id”: “image_width”,
“min”: 50,
“max”: 300,
“step”: 10,
“unit”: “px”,
“label”: “Image width”,
“default”: 150
}
]
},
{
“type”: “text”,
“name”: “Text”,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “About our store”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “Content”,
“default”: “

Use this text area to tell your customers about your brand and vision. You can change it in the theme editor.


}
]
},
{
“type”: “links”,
“name”: “Links”,
“settings”: [
{
“type”: “link_list”,
“id”: “menu”,
“label”: “Menu”,
“info”: “This menu won’t show dropdown items.”,
“default”: “footer”
}
]
},
{
“type”: “social_media”,
“name”: “Social media”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “To configure social media, go to your social media settings.”
},
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “Follow us”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “Content”,
“default”: “

To configure social media, go to your social media settings. Change this text in the theme editor.


}
]
},
{
“type”: “newsletter”,
“name”: “Newsletter”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “Customers who subscribe will have their email address added to the "accepts marketing" customer list.”
},
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “Newsletter”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “Content”,
“default”: “

A short sentence describing what someone will receive by subscribing


}
]
}
],
“default”: {
“blocks”: [
{
“type”: “text”,
“settings”: {}
},
{
“type”: “links”,
“settings”: {}
},
{
“type”: “newsletter”,
“settings”: {}
},
{
“type”: “social_media”,
“settings”: {}
}
]
}
}
{% endschema %}

What do you want to show now?

Copyright © 2022 Coco Rosey. All Rights Reserved.

please replace the footer.liquid file code with this one

https://docs.google.com/document/d/1UNmJuokkPHvOdCMCulB9wf3Zrxky8_wEU_f2XcnKQgg/edit?usp=sharing

i have updated the code to remove the square dot.

Hi, the code worked but I am left with a little square between the copyright year and my store name. I have attached a picture for better understanding.

Okay. So, should I click on the code link again and copy the updated version?

yes

It worked. Thank you.