Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1462334
    #1462355

    Hey Ivana,

    Thank you for the inquiry.

    The icon is not yet available but you can manually add it by uploading this zip file to the Enfold > Import/Export > Iconfont Manager.

    // https://1drv.ms/u/s!AjjTfXSRbKTvguM8owBR5qH5aci6dw?e=ylqhfA

    Then add this code in the functions.php file:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons)
    {
        $icons['threads'] = array('font' => 'threads', 'icon' => 'ue800');
        return $icons;
    }
    add_filter('avf_default_icons', 'avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons)
    {
        $icons['Threads'] = 'threads';
        return $icons;
    }
    add_filter('avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1);
    

    You should now be able to add the new social icon from the Enfold > Social Profiles panel. Please check the links below for more info:

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
    // https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    Best regards,
    Ismael

    #1462444

    Thank you Ismael. I don’t feel comfortable adding things to the functions.php file. Do you have any idea when it may be available within the theme?

    #1462452

    Hi,

    There’s no ETA yet, but we’ll forward this thread to our channel. It will probably be added in the next patch. If not, you will have to try the suggestion above.

    Best regards,
    Ismael

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