Hi!
We (www.conscious.cleaning) are using the Broadcast theme and are unable to add payment icons in our footer.
The given solution by Shopify (see below) does not work as the following code does not appear int he Footer.Liquid or in the Theme.Liquid: {% for type in shop.enabled_payment_types %}
Is there any other piece of code we can implement for our theme?
Solution Shopify:
Find Code: {% for type in shop.enabled_payment_types %}
Replace with: {% assign enabled_payment_types = ‘visa,master,american_express,paypal’ | remove: ’ ’ | split: ‘,’ %} {% for type in enabled_payment_types %
Thanks!

