Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1478275

    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”?

    #1478316

    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.
    Screen Shot 2025 03 01 at 7.23.39 AM

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.