Where to edit the social media icon name (on hover) in my footer?

Hi,

Here is my store - https://rb.gy/u0sest

In the footer, the social media icons for twitter and facebook, when you hover over them, you see &#39 text, how do I correct this so it looks proper?

Thank you.

@jinnypeace9 Can you share that footer code or file?

1 Like

Hi @jinnypeace9
Just checked your store, In this case I think has a problem in your theme code. It generate HTML code instead of character as you want.
Please share the footer liquid code, then we can help you check and fix it.

1 Like

Here is the code -

{% if settings.social_facebook_link != blank %}

  • Facebook
  • {% endif %}

    Thanks.

    Hi @jinnypeace9 You can try to replace with this

    {% if settings.social_facebook_link != blank %}
    - Facebook
    
    {% endif %}
    
    1 Like

    I’m using supply theme.

    @jinnypeace9 Try this code.

    {% if settings.social_facebook_link != blank %}
    - Facebook
    
    {% endif %}
    
    1 Like

    Just to remove escape? I have to do this for all social medias.

    Thank you, it works.