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

    Hey Andrew,

    Can you please create a temporary admin login and post it here privately so we can adjust the code for you? :)

    Best regards,
    Yigit

    #895432

    Sure thing – see attached. Thanks!

    #895720

    Hi,

    Editor is missing under Appearance tab therefore we are not able to edit your code from WordPress dashboard. Could you please enable it or provide FTP logins here privately as well so we can edit the file directly on your server? :)

    Best regards,
    Yigit

    #897731
    This reply has been marked as private.
    #898068

    Hi,

    Thanks! I changed your code to following one

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['yelp']	 = array( 'font' =>'zocial', 'icon' => 'ue800');
    	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);

    Please review your website :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Custom Social Icon questions’ is closed to new replies.