# Add a custom footer

Source: https://support.storeconnect.com/articles/how-to-add-a-custom-footer · Last modified 21 August 2026

This guide shows you two different ways to set a global custom footer for your site:

-   [Create a footer using a content block](how-to-add-a-custom-footer)
-   [Create a footer in your theme](how-to-add-a-custom-footer)

## Create a footer using a content block

1.  Go to the store settings
2.  Under the CMS tab click on ‘footer content block’

    ![Footer content block field](https://res.cloudinary.com/hzkr6fi81/image/upload/v1781677785/documentation-media/footer_content_block.png)


1.  On the dropdown being displayed click on **new content block**
2.  Select the ‘No added styling’ option in the content template field
3.  Give your content block a name
4.  Place your HTML or liquid code in the content field
5.  Click on **Save**
6.  Now **save** the Store record

## Create a footer in your theme

While using a custom theme you can insert your own footer following these steps:

1.  Go to the theme you are currently working on
2.  Create a new theme template
3.  Use the `snippets/footer` key and paste the your template in the content field
4.  Click on **Save**

### Footer markup

Here’s a liquid and HTML boilerplate you can use for both methods above, feel free to modify it.


```

{%- cache "footer", items: [current_store, current_customer, current_privacy] -%}
  {%- if current_store.footer != blank %}
    {{ current_store.footer.render }}
  {%- else %}

      {%- if current_store.footer_menu != blank %}
        {{ current_store.footer_menu.render }}
      {%- endif %}

        © {{ current_store.name | default: "StoreConnect" }} {{ current_store.timezone | now | date: "%Y" }}
        {%- if current_privacy.accepted? %}

            {{ "privacy.manage_settings" | t }}

        {%- endif %}


  {%- endif %}
{%- endcache %}
```

---

## Follow StoreConnect

- [Email Newsletter](https://getstoreconnect.com/c/lp-newsletter)
- [LinkedIn Newsletter](https://www.linkedin.com/build-relation/newsletter-follow?entityUrn=7444956928444862464)
- [YouTube](https://www.youtube.com/channel/UCngKdP2x8l1wcbAKW3tvU8g)
- [LinkedIn](https://www.linkedin.com/company/storeconnect)
- [X / Twitter](https://x.com/storeconnecthq)

## Popular Links

- [Partners](https://getstoreconnect.com/partners)
- [News](https://getstoreconnect.com/articles/news)
- [Events](https://getstoreconnect.com/articles/events)
- [Feature Comparison](https://getstoreconnect.com/how-we-compare)
- [Download a free trial](https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000FMkeKUAT)
- [Book a Demo](https://getstoreconnect.com/contact)

## Documentation

- [Help documentation](https://support.storeconnect.com/help-documentation)
- [AI agents](https://support.storeconnect.com/ai)
- [Videos & tutorials](https://support.storeconnect.com/videos-tutorials)
- [Developer reference](https://support.storeconnect.com/developer-reference)
- [Release notes](https://support.storeconnect.com/release-notes)
- [Troubleshooting](https://support.storeconnect.com/troubleshooting)
- [Trust Center](https://trust.getstoreconnect.com/)
- [Status Page](https://status.storeconnect.com/)

## Contact

- info@getstoreconnect.com
- US +1 415 745 3230
- AUS +61 2 8365 2308

100 S Ashley Dr, Suite 600-2461
Tampa FL 33602-600 USA

Level 22, Sydney Place
180 George Street
Sydney, NSW, 2000, AUS

---

StoreConnect Support — https://support.storeconnect.com/articles/how-to-add-a-custom-footer