Is it possible to change the “Blog List” element’s “List Layout – Compact (Title and icon Only)” icon? It’s a pencil icon by default. Can it be changed to anything else, such as Entypo “leaf”?
Hey Tanja,
Please ensure that you are using Enfold v7.0, then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
function avia_replace_standard_icon($icons)
{
$icons['svg__standard'] = array( 'font' =>'svg_entypo-fontello', 'icon' => 'leaf');
return $icons;
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
Mike