Skip to main content
All CollectionsPay by Invoice (PowerPay)
How to add the "Pay by invoice" icon to the payment methods in your footer?
How to add the "Pay by invoice" icon to the payment methods in your footer?

Learn how to add the "Pay by invoice" icon to your footer payment methods with this guide.

Updated over 2 months ago

If the Invoice 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: ',esr_paymentslip_switzerland' | split: ',' %}
    {%- for type in enabled_payment_types -%}
Did this answer your question?