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

    Hi,

    I found a thread in the support topics about add a yelp icon. I followed it but it doesn’t seem to be working correctly. The hover colors show up but the icon is not.

    I adde this code to my functions php

    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);

    Than I added this css

    #top #wrap_all .av-social-link-yelp:hover a {
        background-color: red;
        color: white;
    }
    #1139548

    Hey,

    Could you please post WP admin logins here privately so we can look into it?

    Best regards,
    Yigit

    #1139636

    Sure,

    Here you go.

    #1139665

    Hi,

    I changed “uF1E9” to “ue804” in functions.php. Please review your website :)

    Best regards,
    Yigit

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