Liquid, JavaScript, themes, sales channels
I'm having trouble adding payment icons to the footer of my website. Any help would be appreciated.
Below is the URL for my website and my footer code.
URL: www.barcongetta.com
Template: Brooklyn
Code:
</div>
{% if section.settings.footer_show_methods_of_payment %}
<div class="footer-icons">
<ul class="inline-list payment-icons">
{% if section.settings.payment_icon_1 != blank %}<li><a href="/cart"><img src="{{ section.settings.payment_icon_1 | img_url }}" alt="Visa" /></a></li>{% endif %}
{% if section.settings.payment_icon_2 != blank %}<li><a href="/cart"><img src="{{ section.settings.payment_icon_2 | img_url }}" alt="MasterCard" /></a></li>{% endif %}
{% if section.settings.payment_icon_3 != blank %}<li><a href="/cart"><img src="{{ section.settings.payment_icon_3 | img_url }}" alt="Amex" /></a></li>{% endif %}
{% if section.settings.payment_icon_4 != blank %}<li><a href="/cart"><img src="{{ section.settings.payment_icon_4 | img_url }}" alt="Discover" /></a></li>{% endif %}
{% if section.settings.payment_icon_5 != blank %}<li><a href="/cart"><img src="{{ section.settings.payment_icon_5 | img_url }}" alt="PayPal" /></a></li>{% endif %}
{% if section.settings.payment_icon_6 != blank %}<li><a href="/cart"><img src="{{ section.settings.payment_icon_6 | img_url}}" alt="Google Wallet" /></a></li>{% endif %}
</ul>
</div>
{% endif %}
</div>
</div>
Thanks!
Hi @barcongetta,
I checked and the code will ask you to add JSON for schema and upload icon in Customize.
It will be very difficult so I suggest you change the code, it will work fine with Brooklyn theme.
Go to sections/footer.liquid and add code: https://i.imgur.com/gf4GqG4.png
{%- unless shop.enabled_payment_types == empty -%}
<span class="visually-hidden">{{ 'general.payment.method' | t }}</span>
<ul class="inline-list payment-icons site-footer__payment-icons">
{%- for type in shop.enabled_payment_types -%}
<li>
{{ type | payment_type_svg_tag: class: 'icon' }}
</li>
{%- endfor -%}
</ul>
{%- endunless -%}
Hope it helps!
User | RANK |
---|---|
35 | |
25 | |
16 | |
9 | |
9 |
Photo by Marco Verch Sales channels on Shopify are various platforms where you can sell...
By Ollie May 25, 2023Summary of EventsBeginning in January of 2023, some merchants reported seeing a large amo...
By Trevor May 15, 2023With 2-Factor Authentication being required to use Shopify Payments, we’re here to help yo...
By Imogen Apr 26, 2023