Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Fontello installed but I can't display some icons #1180449

    Hey Victoria, the theme I’m using is Enfold 4.6.2 and the code is already there from line 765 to 780 on the functions.php file. Could you please check again and tell me why those icons aren’t appearing on the Enfold Social Media options?

    // New Code Below
    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons[‘houzz’] = array( ‘font’ =>’home’, ‘icon’ => ‘ue800’);
    $icons[‘icon-google’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘uf1a0’);
    return $icons;
    }
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);

    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons[‘Houzz’] = ‘houzz’;
    $icons[‘Google’] = ‘icon-google’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    Thank you!

Viewing 1 post (of 1 total)