Custom liquid option in footer

Hi @adkowaty ,

In the standard of the theme structure :

  1. Create snippets a file like custom_map.liquid file and put the map code.

  2. Go to theme.liquid file and find such a name section ‘footer’.

{% section 'footer' %}

This is responsible for the footer code.

  1. If you want to show above the footer, add the file custom_map.liquid by render ‘custom_map.liquid’.
{% render 'custom_map' %}

I hope these steps will help you.

Thanks

Vitix Dev Team