I have read:
http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
I found a font, from fontello, uploaded it. It’s code is ue805, however, that is also the ‘mail’ icon.
How do I point ue805 to use the icon I uploaded?
Thanks!
I have also read:
https://kriesi.at/support/topic/head-with-social-media-and-large-logo/
But I think I am missing something. How would I do this for the pencil icon?
Thanks again
Hi!
What code have you tried so far? my guess is that you need to change the font value in the code (by default imported fontello font name is “fontello”):
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons)
{
$icons['standard'] = array( 'font' =>'fontello', 'icon' => 'ue805');
return $icons;
}
Cheers!
Josue