Hi there,
I am trying to change the custom icon font (pencil) on my blog page. Despite of your tips on the forum i can not manage to achieve this. I am working in a child theme and i tried adding the following to Quick CSS:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons)
{
$icons['standard'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue801');
return $icons;
}
But still it does not work. So… how can i change the pencil icon into an other iconfont?
Thanks.
Hey hanssmeijsters!
Please refer to this post – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
Code should be added in functions.php file of your child theme and not in Quick CSS field.
Best regards,
Yigit
Thnaks for you quick respons :-) I am going to try that.