Tagged: 

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

    Hello there, this is my first post so good to see you!

    I’m looking for a way to change the icon of the drop down arrow in the slideshow.

    And another thing, as i saw on the theme settings there is way to upload a new icon font. If i upload font awesome is there any to way to use an icon from this icon family?

    Thanks in advance :)

    #438600

    Hi manwlios!

    Thank you for choosing Enfold and welcome to our forum :)
    Please see – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/

    Regards,
    Yigit

    #714302

    i got a fatal error. what can i do?
    Fatal error: Cannot redeclare avia_replace_standard_icon() (previously declared in
    xxxxxxxx/wp-content/themes/enfold-child/functions.php:5) in xxxxxxxx/wp-content/themes/enfold-child/functions.php on line 32

    according to http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/ i added this code of beauty in my child-theme:

    add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
    
    function avia_replace_standard_icon($icons)
    {
    $icons['scrolldown']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue877');
    return $icons;
    #714858

    Hi,

    Please use the code as following

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

    Best regards,
    Yigit

    #715152

    Hi Yigit, it does work & looks great! Thank you.

    #715237

    Hi,

    You are welcome!

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to change the scroll down arrow icon?’ is closed to new replies.