All Collections
TWINT
Shopify
How to add the TWINT icon to the payment methods in your footer?
How to add the TWINT icon to the payment methods in your footer?

This article explains how you can update your Shopify theme so the footer includes the TWINT icon in your payment icons.

Till avatar
Written by Till
Updated over a week ago

If the TWINT icon is missing on your website footer please follow these steps to add it.

  1. From your Shopify admin, go to Online Store > Themes.

  2. Find the theme you want to edit, and then click Actions > Edit code.

  3. In the Sections directory, click footer.liquid. If your theme doesn't include this file, then click theme.liquid in the Layout directory.

  4. Find the following code in the file:

    {% for type in shop.enabled_payment_types %}  

    or

    {%- for type in shop.enabled_payment_types -%}

  5. Replace the code which you just searched for with:

    {% assign payment_types_from_config = shop.enabled_payment_types | join: ',' %}
    {% assign enabled_payment_types = payment_types_from_config | append: ',twint' | split: ',' %}
    {%- for type in enabled_payment_types -%}
Did this answer your question?