Tagged: 

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

    Hi Team,
    please add the new social profiles: GitHub, TikTok and Telegram.

    Thanks
    Andrea

    #1209162

    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

    #1209308

    Thank Nikko!

    #1209421

    Hi,

    Great, I’m glad that Nikko could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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