Replace social media icon

Solved
seantay1993
Explorer
83 2 7

Is there a way I could replace the Tumblr icon in the footer with Google icon ( <i class="fa-brands fa-goggle"></i>)?

Accepted Solution (1)
Ujjaval
Shopify Partner
1242 197 192

This is an accepted solution.

@seantay1993 add below jquery code into theme.liquid file before closing </body> tag

<script>
$('a.tumblr.cb.ttip_nt.tooltip_top').html("<i class='fa-brands fa-goggle'>G</i>");
</script>

Ujjaval_0-1685960109750.png

 

View solution in original post

Replies 6 (6)
suyash1
Shopify Partner
8324 1031 1365

@seantay1993 - you can if you edit footer.liquid file and you have tumblr icon code there

You are welcome to contact me - suyash.patankar@gmail.com, My timezone is GMT+5:30,to build shopify pages use pagefly

Support me 🙂
seantay1993
Explorer
83 2 7

I try replacing it but it doesn't take effect to my website.

        {%- if settings.share_tumblr -%}
        <a data-no-instant rel="noopener noreferrer nofollow" data-content="http:{{permaImage}}" href="//tumblr.com/widgets/share/tool?canonicalUrl={{ permalinkURL }}" target="{{target}}" class="tumblr cb {{class_tooltip}}">
          <span class="tt_txt"></span>
          <i class="fa-brands fa-goggle"></i>
        </a>
suyash1
Shopify Partner
8324 1031 1365

@seantay1993 - I checked code on browser, it still has tumbler code only and not google

You are welcome to contact me - suyash.patankar@gmail.com, My timezone is GMT+5:30,to build shopify pages use pagefly

Support me 🙂
seantay1993
Explorer
83 2 7

Could you assist me on how to locate the code to replace?

Ujjaval
Shopify Partner
1242 197 192

This is an accepted solution.

@seantay1993 add below jquery code into theme.liquid file before closing </body> tag

<script>
$('a.tumblr.cb.ttip_nt.tooltip_top').html("<i class='fa-brands fa-goggle'>G</i>");
</script>

Ujjaval_0-1685960109750.png

 

seantay1993
Explorer
83 2 7

Thank you!