Shopify – Add POLi payment badge to footer
In order to add the POLi payment badge to the footer of your store, you will need to edit the code of your theme. Please only follow the below instructions if you are comfortable doing this.
A guide on how to edit your footer can be found at https://help.shopify.com/en/manual/online-store/themes/themes-by-shopify/vintage-themes/customizing-vintage-themes/add-credit-card-icons or below.
Enable payment icons in your footer
- Go to the theme editor.
- Click ‘Footer‘.
- Check the ‘Show payment icons‘ checkbox.
- Click ‘Save‘.
Edit the code for your payment icons
- From your Shopify admin, go to Online Store > Themes
- Find the theme you want to edit, click the … button to open the actions menu, and then click Edit code.
- In the Sections directory, click
footer.liquid
. If your theme doesn’t include this file, then clicktheme.liquid
in the Layout directory. - Search for ‘
{% for type in enabled_payment_types %}
‘ using Ctrl + F on the page. - Above this line, add poli to the list of enabled payment types
Example:{% assign enabled_payment_types = 'visa,master,poli' | remove: ' ' | split: ',' %}
- Click ‘Save‘ in the top right
Congratulations, the POLi payment badge should now be displayed in the footer of your store.