Payment cards icons are gone from the footer

Payment cards icons are gone from the footer

nadezhda_ilieva
Excursionist
16 0 5

Hс! Last week I had to update my Stripe account and since then the payment card icons in the footer menu have been gone. 

 

I checked the theme and they are enabled. 

 

Has anyone run into the same problem?

 

Website: www.risunki.bg

Replies 2 (2)

EvinceDev
Shopify Partner
121 13 13

Hello @nadezhda_ilieva
Steps to fix missing payment card icons in footer:
1. Check Liquid Code:

  • Navigate to the theme's footer.liquid file.
  • Look for the section of the code where the payment icons are supposed to be listed.
  • Ensure there is a forloop or static code listing the payment methods (e.g., Visa, Mastercard, etc.). It might look something like this:

 

<ul class="payment-icons">
    <li><img src="{{ 'visa.png' | asset_url }}" alt="Visa"></li>
    <li><img src="{{ 'mastercard.png' | asset_url }}" alt="Mastercard"></li>
    <li><img src="{{ 'amex.png' | asset_url }}" alt="Amex"></li>
</ul>
​

 

Add Icons Manually if Missing:

EvinceDev_2-1729595678864.pngEvinceDev_3-1729595714734.png

 

Shopify Theme Advanced Backend Developer and Debugger
Want to modify or develop new app, Hire us.
If our Answer is helpful then please Like and Accept Solution!
I am an eCommerce and Marketing Technology consultant based in India.
To inquire about consulting work availability, You can reach me on Skype by live: rahul.evince or mail on partners@evincedev.com.
Shopify Apps URL :- https://apps.shopify.com/partners/gemfind1
Customization on Shopify Theme | Shopify App Development | SEO & Digital Marketing
nadezhda_ilieva
Excursionist
16 0 5

Thank you, but this doesn't seem to work.