I second @jdstiger , the icons arent working anymore after the latest update. The font-awesome 5 requires ‘fab fa-facebook’ for showing facebook instead of ‘fa fa-facebook’.
Please fix the issue Yith.
-
This reply was modified 6 years, 3 months ago by
ajasra.
@jdstiger could you please share with us url to your site, where we can check the issue?
@ajasra please note that YITH WooCommerce Wishlist bundle FontAwesome 4.7.0
Any inconsistency is probably due to the fact that your theme dequeues wishlist assets, and loads its own version of FontAwesome
Unfortunately, as you said, FontAwesome changed a lot with version 5.x, and also switched to a new naming standard: this is the main reason why we didn’t update library in first place
We’re planning to release new and updated FontAwesome with one of the following major releases, but I cannot give you any ETA currently
Thread Starter
Tiger
(@jdstiger)
@jdstiger Please, try to add the following CSS code to additional CSS section of your theme customizer
.yith-wcwl-share li.share-button a{
padding: 8px 5px 0;
}
.yith-wcwl-share li.share-button a i{
color: #fff;
line-height: 1;
}
.yith-wcwl-share li.share-button a.facebook i,
.yith-wcwl-share li.share-button a.twitter i,
.yith-wcwl-share li.share-button a.pinterest i,
.yith-wcwl-share li.share-button a.whatsapp i{
font-family: 'Font Awesome\ 5 Brands'
}
.yith-wcwl-share li.share-button a.email i:before{
content: "\f0e0";
}
This is the final result that I got during my test
Hope this helps
@yithemes Thanks for the response. Thats how i fixed the issue.
Thread Starter
Tiger
(@jdstiger)
@yithemes that fixed the issue, thank you.