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

    Having issues with this as well and cant piece together what I did wrong. I followed the guide here:http://kriesi.at/documentation/enfold/custom-social-icons/

    Downloaded and imported the yelp icon from fontello. I see it in tools like Icon List but can not get a new category in social profiles to show up.

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons[‘yelp’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘uf1e9’);
    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[‘Yelp’] = ‘yelp’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    #660540

    Hi Kyle!

    You have two child themes and you were editing functions.php file of wrong one also your code needed adjustments. I took care of them. Please review your website now

    Regards,
    Yigit

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