adding Afterpay icon into footer (or other icons)

OK I found a solution

  1. Please go to the editor > footer.liquid

  2. Find this bit of code :

{%- capture payment_icon_markup -%}
{%- if show_payment_icons -%}

{{ 'general.payment.method' | t }}
    {%- for type in shop.enabled_payment_types -%}
  • {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
  • {%- endfor -%}
    1. and add this line of code after the endfor
  • afterpay
    1. Now you may see that the image is small so we now have to make it bigger with CSS, go to the themeliquid

    Copy below

    #shopify-section-footer > footer > div:nth-child(3) > div > div.grid__item.small–hide.one-half.site-footer-item-center-vertically > div > ul > li:nth-child(6) > img{

    width: 100px;
    height: 70px;

    }

    1. change width and height to your liking