Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #600733

    Hi,
    I’d doing a site for an actor and would like to include links to her three professional bodies where social icons appear, keeping the email icon that’s there at the moment. Is there a way of doing that?
    Many thanks
    Sophie

    #600764

    Hey Purplenaartjie!

    Here is an idea how you can do such changes
    https://kriesi.at/support/topic/use-different-social-icons/#post-251970

    Please do let us know if you need anything else

    Cheers!
    Basilis

    #600844

    Ignore this one, apologies – see next message!

    #600848

    Uploaded imdb as a family of three fontello fonts – imdb, spotlight and equity – and used the code below but the icons don’t show up when I try to select them in social icons?

    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons[‘imdb’] = array( ‘font’ =>’imdb’, ‘icon’ => ‘ue801’);
    $icons[‘spotlight’] = array( ‘font’ =>’imdb’, ‘icon’ => ‘ue802’);
    $icons[‘equity’] = array( ‘font’ =>’imdb’, ‘icon’ => ‘ue800’);
    return $icons;
    }

    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons[‘IMDb’] = ‘imdb’;
    $icons[‘Spotlight’] = ‘spotlight’;
    $icons[‘Equity’] = ‘equity’;
    return $icons;
    }

    #600883

    Hi!

    can u please paste for us, your code used to pastebin, so we can check it exactly as forums some times change the ” and ‘.
    We would appreciate if possible

    Cheers!
    Basilis

    #601886

    my icons show up in layout-editor – icons..
    but i can’t select them in social icons dropdown menu. i added this code to the very end of functions.php

    what is wrong?!

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['icon1']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    $icons['icon2']	 = array( 'font' =>'fontello', 'icon' => 'ue802');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Icon1'] = 'icon1';
    $icons['Icon2'] = 'icon2';
    return $icons;

    help me! thx!

    #602331

    Hi @patneu,

    Please start a new thread and include admin login details in private so that we can have a closer look.

    Thanks,
    Rikard

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