Hi,
Is there any way to disable the tooltip labels - "I like this" "I dislike this" when you hover over the buttons?
I can see that you can set custom ones, but any way of disabling them completely?
Cheers,
Dan.
Hi,
Is there any way to disable the tooltip labels - "I like this" "I dislike this" when you hover over the buttons?
I can see that you can set custom ones, but any way of disabling them completely?
Cheers,
Dan.
Hi,
There is no such option for now. It will be implemented in about a month.
ahhThere is no way to do it through the CSS at this point? It's the only thing we're missing to be able to go live.
I've been trying to disable it with "display:none" but I might be missing something...?
/* tooltip */
.likebtn-wrapper .lb-a .lb-tt i {
color: black;
display: none;
}
.likebtn-wrapper .lb-a .lb-tt {
display: none;
}
.likebtn-wrapper .lb-a i {
font-style: normal;
display: none;
}
It's possible if you are familiar with CSS.
Wrap Like Button into container with specific id and use it in CSS:
#my_div .likebtn-wrapper .lb-a .lb-tt i {
color: black;
display: none;
}
#my_div .likebtn-wrapper .lb-a .lb-tt {
display: none;
}
#my_div .likebtn-wrapper .lb-a i {
font-style: normal;
display: none;
}
Now you can use http://likebtn.com/en/#settings_tooltip_enabled option.