Tagged: social
Hi Team,
please add the new social profiles: GitHub, TikTok and Telegram.
Thanks
Andrea
Hey drego85,
You can get the icons from http://fontello.com/ though there’s only Github and Telegram.
Then you can add those icons via Iconfont Manager: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Then add this code in functions.php of your Child theme:
function avia_add_custom_icon($icons) {
$icons['github'] = array( 'font' =>'fontello', 'icon' => 'uf09b');
$icons['telegram'] = array( 'font' =>'fontello', 'icon' => 'uf2c6');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
function avia_add_custom_social_icon($icons) {
$icons['Github'] = 'github';
$icons['Telegram'] = 'telegram';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Best regards,
Nikko
Thank Nikko!