• I noticed that the plugin is calling fontello.woff even though there’s no text being displayed. Is there a way to either disable it or change it to a font I’m already using on the site to eliminate an unnecessary call?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add “font-display: swap;” in @font-face..
    Eg:
    @font-face {
    font-family: ‘lsi-fontello’;
    src: url(‘../fonts/fontello.eot’);
    src: url(‘../fonts/fontello.eot#iefix’) format(’embedded-opentype’),
    url(‘../fonts/fontello.woff’) format(‘woff’),
    url(‘../fonts/fontello.ttf’) format(‘truetype’),
    url(‘../fonts/fontello.svg#fontello’) format(‘svg’);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    }

    files:
    wp-content/plugins/lightweight-social-icons/css/style.css
    wp-content/plugins/lightweight-social-icons/css/style-min.css

    I hope it will be included in the next version by Tom along with the whatsapp icon.

    I have the same issue. I did update the style.ccs and style-min.css as suggested. No change. Any other ideas to solve this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Fontello.woff’ is closed to new replies.