Why don't my payment icons show up in footer settings?

Hello, I enabled “Show payment icons” (in footer settings) but still, it doesn’t show up. I’m using a third-party payment provider (Paysera).

Since you use a third party payment provider, you will have to follow the steps below:

Edit the code for your payment icons

In this step, you will change the way that payment icons are assigned to your footer. By default, your theme shows the icons that are associated with the payment gateway you have enabled in the payment settings section of your admin and that are available for the current customer’s region and currency. With this customization, you will manually add or remove the payment icons that you want to display.

To edit the code for your payment icons:

  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 %}

Replace it with:

{% assign enabled_payment_types = 'visa,master,american_express,paypal' | remove: ' ' | split: ',' %}
{% for type in enabled_payment_types %}
  1. In the code that you just pasted, there is a list of payment providers separated by commas: visa,master,american_express,paypal. The payment providers that you include in this list will determine which payment icons display on your online store. You can edit the list of payment providers to suit your needs.

    The values that you can use are listed below:

  • afterpay - american_express - apple_pay - bitcoin - dankort - diners_club - discover - dogecoin - dwolla - facebook_pay - forbrugsforeningen - google_pay - ideal - jcb - klarna - klarna-pay-later - litecoin - maestro - master - paypal - shopify_pay - sofort - visa
  1. Click Save.

<Source>

Thanks! It worked well.

Hello, looking for a solution to the same issue with Dawn Theme cannot locate the

{% for type in shop.enabled_payment_types %}

under footer.liquid