Payments and trust

In the Product template, you can add a Payments and trust block to display a payment and security message with icons of accepted payment methods.

Set up payments and trust block


Under Product overview, click (+) Add block and select Payments and trust. Use the drag-and-drop handles ⋮⋮ to re-order blocks.

Click the block to find settings for the layout, headings, and optional image.

STEPS

In your theme editor (Customize):

  1. Under Product overview, click (+) Add block and select Payments and trust.

  2. Click the new Payments and trust block to open the settings.

  3. Select which Column to display the Text block: Either the Right (in the product form) or on the Left (beneath the product media).

  4. Select the Alignment of the heading and text: Either Left, Center, or Right.

  5. (Optional.) Choose whether to Show payment icons.

    The block displays icons for accepted payment methods included in your payment gateway. See Shopify's Payments guide ↗ or contact Shopify Support ↗ about issues with payment icons.

  6. Change the Heading text for a title above your secure payments message.

    We recommend a short title of a few words.

  7. Select an Icon to display next to the heading.

    Select None at the top of the dropdown to remove the icon.

  8. Change the Text for a message about your secure payment methods.

  9. Select the Text size of the text: Either Small, Medium, or Large.

  10. Under Image, click Select image to upload an image or icon to display below the text.

    Use the Image size to increase or decrease the pixel width of your image.

  11. Choose to display the secure payments block as a Collapsible row.

    As a collapsible row, the products Expand by default. You can choose to disable this option.

    (Optional.) Change the Collapsible row title that appears as the toggle that opens the row when clicked.

  12. Click Save.

Advanced: Add or remove payment icons


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.

STEPS

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:

{% for type in enable_payment_types %}

  1. Replace that code with the following code:

```liquid

{% assign enabled_payment_types = 'visa,master,american_express,paypal' | remove: ' ' | split: ',' %} {% for type in enabled_payment_types %}


</div>

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>

&#x20;
<br>

***

> **Related links**
>
> [Product template](../product-template.md)\
> [Product page blocks](./)

Last updated

Was this helpful?