[Resolved] Lightweight Social Icons – Can't See Icons

Home Forums Support [Resolved] Lightweight Social Icons – Can't See Icons

Home Forums Support Lightweight Social Icons – Can't See Icons

  • This topic has 6 replies, 2 voices, and was last updated 8 years ago by Tom.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #182100
    Alessio Angeloro

    Hi Tom,

    i install succesfully Lightweight Social Icons and until yesterday I see the icons on the header, today i see a litte square without any icons, i’ve tried to reinstall plugin but nothing happens.

    Do you have idea about this issue ?

    May be you can help you, if i add the “fa” class on the “a” tag i see the icons.

    Regards,
    Alessio

    #182139
    Tom
    Lead Developer
    Lead Developer

    That’s odd – is the URL you’re visiting the exact URL you have set in “Settings > Reading” (including or excluding www.).

    In Firefox if the URL you’re visiting isn’t the same as the URL set in WordPress, the icons won’t show.

    #182297
    Alessio Angeloro

    Hi Tom,

    yes is the same URL, anyway i’have not make any change under reading and i have the same problem in all browser (chrome, ff, safari, windows and mac os)

    #182311
    Alessio Angeloro

    Hi Tom,

    i found the problem and the solution πŸ™‚

    The problem is the tooltip class, in fact if i disable the tooltip in widget option i can see the icon.

    So…

    I make a little script to remove the tooltip classe and add my “mytooltip” class

    <script>
    $(document).ready(function() {
    $(‘.tooltip’).removeClass(‘tooltip’).addClass(‘mytooltip’);
    });
    </script>

    and than i edit the js library of tooltipster and at the adn of file a write this :

    // Initialize
    jQuery(document).ready(function($) {
    $(‘.mytooltip’).tooltipster({
    delay: 200,
    theme: ‘tooltipster-default’,
    touchDevices: false,
    trigger: ‘hover’
    });
    });

    to replace this :

    // Initialize
    jQuery(document).ready(function($) {
    $(‘.tooltip’).tooltipster({
    delay: 200,
    theme: ‘tooltipster-default’,
    touchDevices: false,
    trigger: ‘hover’
    });
    });

    and now working fine for me πŸ™‚

    Thanks,
    Alessio

    #182432
    Tom
    Lead Developer
    Lead Developer

    Interesting, I wonder why you had to do this? Do you have another plugin using that same tooltip class maybe?

    #182498
    Alessio Angeloro

    Hi Tom,

    i’m not really sure but may be a Bootstrap conflict, i’m not debug yet.

    No other plugin use tooltip class.

    Alessio

    #182636
    Tom
    Lead Developer
    Lead Developer

    I’ll do some testing πŸ™‚

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.