Secure payment
In the Product template, you can add a Secure payment block to display a payment and security message with icons of accepted payment methods.
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 to learn more.
Set up block
Under Product overview, click (+) Add block and select Secure payment. Use the drag handles ⋮⋮ to re-order blocks.
Click the block to select the layout and position.
Editing templates change all pages that use that template. For unique pages, use new templates or dynamic metafields
Layout and style
Click the block to find settings for the layout, headings, and optional image.
STEPS
In your theme editor (Customize):
Under Product overview, click on the Secure payment block to open the settings
Select the Text alignment of the heading and text: Either Left or Center.
Select the Text position of the heading and text: Either Above payment icons or Below payment icons.
(Optional.) Choose whether to Display 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.
Change the Heading text for a title above your secure payments message.
We recommend a short title of a few words.
Select a Heading icon to display next to the heading.
Select None at the top of the dropdown to remove the icon.
Change the Text for a message about your secure payment methods.
Select the Text size of the text: Either Small, Medium, or Large.
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.
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.
Click Save.
Click block to find settings
Text alignment
Align the text to the Left or Center.
Text position
Display text Above payment icons or Below payment icons.
Show payment icons
Heading text
Heading icon
Text
Text size
Image
Select or upload an image. There are no required dimensions. We recommend an image with a minimum width of 50px.
Use PNG files for images with a transparent background.
Image size
Set the maximum width (in pixels) of the image for desktop.
Mobile image size
Set the maximum width (in pixels) of the image for mobile.
Advanced: Add or remove payment icons
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.
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:
Go to Online store > Themes.
Find your current theme, then click the
...button and select Duplicate theme.On the duplicated theme, click the
...button and select Edit code.In the Snippets folder, click
payment-icons.liquidto open the file.Find the following code:
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 %}
Last updated