Tagged: , ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #213104

    Hi guys,
    Can anyone tell me how can I creat a custom icon that is not with fontello?
    I have the webfont in my computer. How can I create a unique icon?
    Thanks everyone!

    #213264

    Hi jta!

    I’m afraid you can only use the fontello icons with the theme. For example, if you want to add a slideshare social icon, download a fontello icon and install the icon using the font manager. You can add this filter on functions.php.

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['slideshare']	 = array( 'font' =>'fontello', 'icon' => 'ue801');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Slideshare'] = 'slideshare';
    return $icons;
    }

    Go to to Enfold > Header and add the Slideshare icon to the social icons.

    Best regards,
    Ismael

    #213431

    Tks Ismael, But Im using an old version of teh theme, can you tell me how can i Do without the font manager, please? And what about a image of issuu icon social, its possible? How?
    Many thanks.

    #214700

    Hey!

    Unfortunately no, the icon font manager is a requirement in this case. We also can’t and don’t support old versions of the theme.

    Best regards,
    Devin

    #261377

    where do you add this within the functions.php file as nobody seems to say and I am not from a great coding background. your help is greatly appreciated

    #261968

    Hi!

    If you are using a child theme then right at the top after your opening tag and comment. In the main Enfold functions.php it can go right after:

    
    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Regards,
    Devin

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How To create A custom social icon’ is closed to new replies.