Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #313656

    Is it possible to edit the icon font symbol added the blog posts? If so, how is it best done. Below is the code that adds the symbol next to head blog title. Thanks!

    <span class=”iconfont” data-av_iconfont=”entypo-fontello” data-av_icon=”” aria-hidden=”true”></span>

    #314252
    #348663

    I’ve reviewed this post you provided and don’t understand. Does this change a single icon or the entire set of icons? Can you please explain further how this is changed or provide more reference material.

    Thank you!

    #348682

    Hi!

    Can you specify what exactly you want to change? a screenshot would help.

    Regards,
    Josue

    #349001
    This reply has been marked as private.
    #349045

    Hey!

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

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

    Change ue915 by the icon you want to use, to check the codes for the available icons simply create a new Icon element and hover the icon of your preference – http://i.imgur.com/oSBFalI.png

    To import custom icons fonts, follow this guide – https://vimeo.com/75743285

    Cheers!
    Josue

    #349087

    Worked like a charm, thanks. Does the theme no longer offer custom icons thru Fontello? I don’t see the option in the Admin panel as per your video… To import custom icons fonts, follow this guide – https://vimeo.com/75743285

    #349122

    Hi!

    The location has changed, you can find it here now – http://screencast.com/t/ecu5N40p

    Best regards,
    Josue

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