We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How to add one more payment icon in the footer?

Solved

How to add one more payment icon in the footer?

SinghSells
Explorer
54 1 10

Hi folks how can add <img src="https://cdn.shopify.com/s/files/1/0677/6376/5472/files/westpac.png?v=1734739470" width="36" height="24" 

 

this payment icon in the footer? it should be aligned with other payment icons. 

 

Accepted Solution (1)

ecoboostify
Shopify Partner
36 8 6

This is an accepted solution.

Hope this guide is helpful to you.

  1. Log in to Shopify > Online Store > Themes > Actions > Edit Code. (https://prnt.sc/uY9U7spGEzIV)
  2. Search footer.liquid, open the file, and find the key "list list-payment". (https://prnt.sc/k1q2WR0LR3Q8)
  3. Copy & paste the custom code below
  4. Save changes.
<li class="list-payment__item">
      <img src="https://cdn.shopify.com/s/files/1/0677/6376/5472/files/westpac.png?v=1734739470" width="36" height="24">
</li>

 

It's truly fulfilling to help someone.
If this fixed your issue, Likes and Accept as Solution are highly appreciated.
EcoBoostify Shoppable Reel UGC - Easily Shoppable Videos+Reels, Inactive Tab Messages, Favicon Cart Counts, and more optimize store

View solution in original post

Replies 2 (2)

ecoboostify
Shopify Partner
36 8 6

This is an accepted solution.

Hope this guide is helpful to you.

  1. Log in to Shopify > Online Store > Themes > Actions > Edit Code. (https://prnt.sc/uY9U7spGEzIV)
  2. Search footer.liquid, open the file, and find the key "list list-payment". (https://prnt.sc/k1q2WR0LR3Q8)
  3. Copy & paste the custom code below
  4. Save changes.
<li class="list-payment__item">
      <img src="https://cdn.shopify.com/s/files/1/0677/6376/5472/files/westpac.png?v=1734739470" width="36" height="24">
</li>

 

It's truly fulfilling to help someone.
If this fixed your issue, Likes and Accept as Solution are highly appreciated.
EcoBoostify Shoppable Reel UGC - Easily Shoppable Videos+Reels, Inactive Tab Messages, Favicon Cart Counts, and more optimize store
SinghSells
Explorer
54 1 10

perfect. Thanks.