Tagged: 

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #327519

    In my menu – i have included some social icons – however, I want to have a icon there for registration. is there a way i can upload or place a custom icon there? or modify one of the existing icons (if this is the only way, where are the icons located?)

    #327578

    Hey!

    Refer to this article:
    http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/

    I’d suggest using a social profile you don’t use and replace the icon for that option, you can see the full list of available icons in functions.php, line 145.

    If you want to use a custom icon font, refer to this video:

    Best regards,
    Josue

    #327754

    okay – so i want to keep the standards fonts that came with the theme – however seeing how i will never use xing social icon – i want to replace it with list-add

    but when i replaced the ue923 in theme function file – it just showed a circle on hover.

    i am using the child theme – so how do i change ONLY the xing icon to the list-add icon (its from fontello, and from the standard library the theme uses) if that makes any sense….like how is the theme referencing ue923 icon???

    #327762

    Ha i figured it out how to figure out what number that is….

    okay so even though i am using the child theme – i modified the main theme function file – i replaced xing’s icon number. and it worked out…however when the new update comes out – i would have to do it again.

    is there a code i can put in the child theme function file?

    thanks

    #327776

    Hey!

    Try adding this at the very end of your child theme functions.php file:

    add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
    
    function avia_replace_standard_icon($icons)
    {
    $icons['xing']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue8a6');
    return $icons;
    }

    Cheers!
    Josue

    #327804

    HELP!!!

    when i added that – it broke the theme!!

    i cannot do anything it just shows a blank page – current the site is up because of cloudflare.

    #327850

    Hey!

    Maybe there was another function with the same name (avia_replace_standard_icon), check in your child functions.php.

    Regards,
    Josue

    #336827

    Is it possible to change the icons to a uploaded gif or png image?

    #337087

    Hey!

    No, unfortunately, you can’t png images for social icons without modifying the theme files. Please use the Iconfont Manager.

    Regards,
    Ismael

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