Are payment icons visible in Debutify Shopify themes?
Payment icons are shown in Debutify Shopify themes at the bottom of your store's page based on your payment settings. You can turn them on or off in the theme editor. You can also adjust the theme code to add or remove payment icons without changing your payment settings.
How to Show Payment Icons in the Footer
STEP 1
Access your Shopify Admin's Theme Library to open the theme customizer.
STEP 2
Go to Sections, scroll down to Footer group, and select Footer.
STEP 3
Click Add block and add Search.
STEP 4
Go to Payment methods and check the box Show payment icons.
Note: We can also add payment icons to other locations, such as the product page, cart page, and cart drawer if using the trust badge widget.
How to Confirm My Payment Methods
To confirm your payment methods, follow these steps:
STEP 1
Go to your Shopify Admin and navigate to Settings > Payments.
STEP 2
Choose a payment provider if one isn’t already selected.
STEP 3
The payment icons that appear on your store will depend on the third-party payment provider you select.
How to Reorder or Choose Which Payment Icons to Display from Shopify’s System
To reorder or select specific payment icons to display from Shopify’s system, follow these steps:
STEP 1
Access your Shopify Admin's Theme Library.
STEP 2
Find the theme you want to edit, click the … button to open the actions menu, and then click Edit code.
STEP 3
Search for the payment-icons.liquid file in the Snippets directory.
STEP 4
Find the following code in the file:
{%- for type in shop.enabled_payment_types -%}
STEP 5
Replace that code with the following:
{% assign enabled_payment_types = 'visa,master,american_express,paypal' | remove: ' ' | split: ',' %} {% for type in enabled_payment_types %}
STEP 6
In the code you just pasted, there is a list of payment providers separated by commas: visa,master,american_express,paypal
. The payment providers in this list will determine which payment icons are displayed on your online store.
Edit the list of payment providers to suit your needs. Review the list of available values here.
How to Add Custom Payment Icons
If you prefer to use your own payment icons rather than the ones provided by Shopify, follow these steps:
STEP1
Open the theme editor and go to Theme settings
STEP 2
Open the Trust Badge tab and add your images to the Custom Icon section.
Note: The Trust Badge add-on does not need to be enabled to use the custom icon feature.
Final Step: Save Your Changes
After completing your customizations, click Save to apply the changes.