Tagged: Threads logo
Good afternoon
I have a number of clients who are starting to use “Threads” for their business and have asked me to add the link to their website. I downloaded the latest version of the theme and it does not seem to have the logo available under “social profiles” or even in the icons menu. Would it be possible for you to add it in.
Many thanks
Ivana
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
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?