# Payment icons

Enable **Payment icons** to display a row of supported payment methods.

{% hint style="success" %}
The theme automatically displays icons for the payment options enabled in your Shopify admin, depending on your customer's region and currency. Payment methods are a Shopify feature. See Shopify's [Payments manual](https://help.shopify.com/en/manual/payments) to learn more.
{% endhint %}

![](https://2417329470-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fhnqe0uck0ozZhJ77wGXt%2Fuploads%2Fgit-blob-72c21e48d3c34f974a8eb9592eb19edadc8115ad%2Ffooter-payment-icons.jpeg?alt=media)

### Advanced: Add or remove payment icons

***

{% hint style="warning" %}
Our support does not cover custom code. These steps are offered only as a reference. For assistance, we recommend reaching out to a [verified Fluorescent partner](https://partners.fluorescent.co/).
{% endhint %}

If you are familiar with coding, you can edit the `payment-icons.liquid` file to add or remove payment icons that are displayed.

When editing theme code, always duplicate your current theme and use the unpublished theme copy to test your changes before publishing.

<details>

<summary><mark style="color:blue;"><strong>STEPS</strong></mark></summary>

From your **Shopify admin**:

1. Go to **Online store** > **Themes**.
2. Find your current theme, then click the `...` button and select **Duplicate theme**.
3. On the duplicated theme, click the `...` button and select **Edit code**.
4. In the **Snippets** folder, click `payment-icons.liquid` to open the file.
5. Find the following code:

```liquid
{% for type in enable_payment_types %}
```

6. Replace that code with the following code:

{% code overflow="wrap" %}

```
```

{% endcode %}

7. Edit the payment type values to change which icons are displayed. Separate each value with a comma.

   > The default list is `visa,master,american_express,paypal`. Find all [available payment values](https://github.com/activemerchant/payment_icons/tree/master/app/assets/images/payment_icons). Copy the name but do not include `.svg`
8. Click **Save**.
9. After testing, you can go to your Theme library to **Publish** the duplicated theme with your changes.

</details>
