This site: http://www.kau-hawaii.com/wordpress
I want to put a social icon to TripADVISOR up with the other icons in the upper right of the screen.
How can I do this?
thanks
Hey elames!
Please try this out, https://kriesi.at/support/topic/custom-social-bar-icons-replaceadd-enfold/.
Best regards,
Elliott
Well I got a cart image..so I know the code worked. But that is not the image I want to use.
I have a TRIPADVISOR icon I want to use from my media library. I put the url in but nothing showed up.
Anything else to try?
Thanks
Hi!
The tripadvisor icon is not available on the fontello icon set. Add this on line 17 of functions.php:
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
function avia_add_custom_social_icon($icons)
{
$icons['Trip Advisor'] = 'tripadvisor';
return $icons;
}
Add the trip advisor icon on Enfold > Social Profiles panel. Use this on Quick CSS:
li.social_bookmarks_tripadvisor {
background: url('IMAGE ICON URI HERE');
background-position: center center;
background-repeat: no-repeat;
}
Use your own tripadvisor icon image on the value of the css background property.
Best regards,
Ismael
Do you think you’ll be adding tripadvisor and yelp to the next update?