Unable to see payment icons in footer/ payment icons not shown in footer

Hello, I used the Fresh theme for my store and I am unable to see the payment methods in the footer of my store. I have tried multiple fixes but to no avail. Please help me fix the same at the earliest.

This is my store link - www.shopvigeo.com

Hi @VaishakhPrakash

Please follow these steps:

  1. From Shopify admin → Online store → Themes → Customize

  2. Then you find the Footer section, and click to display the settings for this section. You find the check box to display the payment icon:

If not, you can go to edit code and find the file footer.liquid and see if the following code is present (range at line 297):


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

            {{ 'sections.footer.payment' | t }}
            

              {%- for type in shop.enabled_payment_types -%}
                - {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
                
              {%- endfor -%}
            

          

        {%- endif -%}
      

We hope that this can help you.