Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1346619

    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

    #1346694

    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

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