Hi,
I’ve read through some topics on here, but could not find a solution working for me, I currently have the checkbox show payment icons enabled, but it only shows me Paypal, since I have an additional payment method from vivawallet enabled Bancontact, Mastercard and Visa, I also want to show those.
I found the following section:
{%- if section.settings.show_payment_icons -%}
{%- unless shop.enabled_payment_types == empty -%}
{{ 'general.payment.method' | t }}
{%- for type in shop.enabled_payment_types -%}
- {{ type | payment_type_svg_tag: class: 'icon' }}
{%- endfor -%}
{%- endunless -%}
{%- endif -%}
Can anyone show me the right code to do this?
Also wondering, if I would use this code, is bancontact a known icon on enabled_payment_types? If not what should I do?
{% assign enabled_payment_types = 'visa,master,bancontact,paypal' | remove: ' ' | split: ',' %}
Also using this code, is it best to disable the show icon checkbox? or just adjust the code that it does not show a double paypal?
Thank you in advance.

