- This topic has 6 replies, 2 voices, and was last updated 4 years, 11 months ago by
Tom.
-
AuthorPosts
-
March 27, 2016 at 1:40 pm #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,
AlessioMarch 27, 2016 at 10:18 pm #182139Tom
Lead DeveloperLead DeveloperThat’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.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentMarch 28, 2016 at 10:25 am #182297Alessio 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)
March 28, 2016 at 11:13 am #182311Alessio 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,
AlessioMarch 28, 2016 at 10:29 pm #182432Tom
Lead DeveloperLead DeveloperInteresting, I wonder why you had to do this? Do you have another plugin using that same tooltip class maybe?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentMarch 29, 2016 at 1:25 am #182498Alessio 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
March 29, 2016 at 10:09 am #182636Tom
Lead DeveloperLead DeveloperI’ll do some testing π
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development -
AuthorPosts
- You must be logged in to reply to this topic.