Archived topic
Lightweight Social Icons - Can't See Icons
6 replies · Started by Alessio Angeloro on March 27, 2016
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
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.
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)
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
Interesting, I wonder why you had to do this? Do you have another plugin using that same tooltip class maybe?
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
I'll do some testing :)
