Shopify merchants using free Shopify themes have the option to display payment icons in their footers. The icons that will show depend on the customer's region and currency, and are the ones for payment providers enabled on the Shopify account's payment settings. Payment icons can be enabled in the theme editor.
Enable payment icons in the footer
1. Login to Shopify account
2. Go to Online Store
3. Click the Customize option beside the theme you are currently using
4. Click Footer
5. Check the Show payment icons checkbox
6. Click Save
Edit code for payment icons
Shopify merchants also have the option to edit the theme code to add or remove payment icons without changing the payment settings.
A. From Desktop
- Go to Online Store > Themes
- Find the theme to be edited, then click Actions > Edit code
- In the Sections directory, click
footer.liquid
. If the theme does not include this file, clicktheme.liquid
in the Layout directory. - 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 %} - In the code pasted, there is a list of payment providers separated by commas (visa,master,american_express,paypal). The payment providers included in this list will be the ones displayed on the Shopify online store footer. This can be edited based on the merchant's needs.
- Click Save
B. From iPhone/Android
- Go to Shopify app then tap Store
- In the Sales channels section, tap Online Store
- Tap Manage themes
- Find the theme to be edited, then click Actions > Edit code
- In the Sections directory, click
footer.liquid
. If the theme does not include this file, clicktheme.liquid
in the Layout directory. - 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 %} - In the code pasted, there is a list of payment providers separated by commas (visa,master,american_express,paypal). The payment providers included in this list will be the ones displayed on the Shopify online store footer. This can be edited based on the merchant's needs.
- Click Save