The theme of our store is Ira, we add visa, master, maestro, discover on our store, but they are not showing on footer. On customize theme, we have selected “show payment icon”.
Our website is: https://megawheels.com
Is anybody can help me to solve this? Thanks.
Hey,
I can help you in this case.
This is Padmapriya from India, having 8+ years of experience in Shopify.
Give me a opportunity to serve you.
In this case we might need theme access
Thanks in Advance
Hi, we have solved this issue. We found the payment-icons.liquid file and add this code:
{% assign enabled_payment_types = 'visa,master,maestro,diners_club,discover,paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}
{{ type | payment_type_svg_tag: class: '' | replace: 'id=', 'data-id=' }}
{% endfor %}
After adding this codes, it work well finally. Anyway, thanks for your reply.