Hey
I’ve added custom Fontello package and I would like to use one of the icons as the search submit icon.
How can I change that? Same thing I want to do with the “Go to top” button.
Thanks!
Hi website2create!
Please see – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
Best regards,
Yigit
Thanks, it did work for the search icon.
But I tired to replace the Go to top icon but it doesn’t replace it.
// change default icons
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons)
{
$icons['search'] = array( 'font' =>'myicons', 'icon' => 'ue803'); // works
$icons['up-open'] = array( 'font' =>'myicons', 'icon' => 'ue801'); // doesn't work
return $icons;
}
Any idea?
Thank you
Hey!
Please try following
// change default icons
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons)
{
$icons['search'] = array( 'font' =>'myicons', 'icon' => 'ue803'); // works
$icons['scrolltop'] = array( 'font' =>'myicons', 'icon' => 'ue801'); // should work now
return $icons;
}
Best regards,
Yigit
Thanks it works.
I found that all the strings appear in functions.php