Guten Tag,
gerne möchte ich meine beiden Kanäle von Telegram und TikTok in die Leiste der “Sozialen Medien” integrieren,
jedoch wenn ich die Funktion im Theme Social Media Profile aufrufe, finde ich weder Telegram noch TikTok dort,
was kann ich tun, um diese dort einzufügen.
Vielen Dank im Voraus.
Sonnige Grüße
Hilger Schneider
Hey Hilger,
Thank you for the inquiry.
Some of the social icons are not included out of the box but you can manually add them by using this code in the functions.php file.
function avia_add_custom_icon($icons) {
$icons['tiktok'] = 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['tiktok'] = 'tiktok';
$icons['Telegram'] = 'telegram';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Best regards,
Ismael
