Created
October 12, 2015 03:49
-
-
Save themepaint/a5a358dfd4562bccb429 to your computer and use it in GitHub Desktop.
YITH Wishlist Icon Filtering
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function iconWishlist($value){ | |
return '<i class="fa fa-heart"></i><span>Add to wishlist</span>'; | |
} | |
function iconWishlistAdd(){ | |
return '<i class="fa fa-check"></i><span>View wishlist</span>'; | |
} | |
add_filter( 'yith_wcwl_button_label','iconWishlist'); | |
add_filter( 'yith-wcwl-browse-wishlist-label','iconWishlistAdd' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment