I’ve successfully added an icon to the social media profiles and everything is working as it should with one exception.
I can’t figure out how to make the mouseover tooltip read Blog instead of Magna on the second one from the right edge – it’s a B for Blog icon.
I can get it to read Blog, but it defaults to the pencil Icon when I do.
I sure could use some help.
This is the code used to add the custom social profile Icon. It works smoothly. Found it here in the forum.
// Register new icon as a theme icon
function avia_add_custom_icon($icons) {
$icons['magna'] = array( 'font' =>'magna', 'icon' => 'ue800');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
// Add new icon as an option for social icons
function avia_add_custom_social_icon($icons) {
$icons['magna'] = 'magna';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Hey!
Glad you figured it out!
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Cheers!
Yigit