Viewing 4 posts - 1 through 4 (of 4 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

    #1478783

    Thank you.

    #1478795

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change the Blog List Layout icon’ is closed to new replies.