Is it possible to edit the icon font symbol added the blog posts? If so, how is it best done. Below is the code that adds the symbol next to head blog title. Thanks!
<span class=”iconfont” data-av_iconfont=”entypo-fontello” data-av_icon=”” aria-hidden=”true”></span>
Hey!
Try the following:
http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
Regards,
Josue
I’ve reviewed this post you provided and don’t understand. Does this change a single icon or the entire set of icons? Can you please explain further how this is changed or provide more reference material.
Thank you!
Hi!
Can you specify what exactly you want to change? a screenshot would help.
Regards,
Josue
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons)
{
$icons['standard'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue915');
return $icons;
}
Change ue915 by the icon you want to use, to check the codes for the available icons simply create a new Icon element and hover the icon of your preference – http://i.imgur.com/oSBFalI.png
To import custom icons fonts, follow this guide – https://vimeo.com/75743285
Cheers!
Josue
Worked like a charm, thanks. Does the theme no longer offer custom icons thru Fontello? I don’t see the option in the Admin panel as per your video… To import custom icons fonts, follow this guide – https://vimeo.com/75743285
Hi!
The location has changed, you can find it here now – http://screencast.com/t/ecu5N40p
Best regards,
Josue