Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1249541

    Hi,

    Few questions.
    1. Don’t know why, but I have 6 social icons at the bottom of my menu, but only 1 is showing.
    2. How can I add a phone icon to that list? (that will be linked to a phone number off cores)
    3. is it possible to show that list on the mobile-menu as well?

    Thank you so much for your help!

    #1250786

    Hey MPPcreative,

    Thank you for the inquiry.

    The pseudo element that contains the other social icons are missing for unknown reason. Have you tried disabling the plugins temporarily?

    Did you modify any of the theme files?

    For the phone icon, we could utilize one of the social icons that you are not planning to use (the VK icon for example) and change its default icon to a phone icon using the avf_default_icons filter in the functions.php file.

    Usage examples:

    // https://kriesi.at/support/topic/fontello-icons-not-working/#post-1193152
    // https://kriesi.at/support/topic/click-to-chat/#post-1193437
    // https://kriesi.at/support/topic/enfold-add-multiple-social-profile-icons/

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1258476

    hey,
    I’m sorry, I thought I’ve answered you already.

    thank you so much.
    the first problem got fixed after I updated the Enfold theme
    and you helped with the other two.

    #1258486

    Hi MPPcreative,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1291186

    Hey

    I read and wrote a code in the function file and managed to create a new social icone.
    everything works including the CSS code for the background color.

    everything is perfect.

    except for the fact that no matter which charcode icon I’m using (and I changed the code a few times just to check it) the icon itself stays as the pencil (charcode ue836).
    I want to use the telephone charcode ue854.
    I’ve changed the charcode on my code but nothing works.

    This is my code –

    function avia_add_custom_icon($icons) {
    $icons[‘Telephone’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue854’);
    return $icons;
    }
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);

    I added the website link again.

    Thank you for the help

    #1291925

    Hi,

    Did you use the avf_social_icons_options filter to assign an icon name to the social icon?

    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Weibo'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    After assigning an icon name to a social icon, only then you can define the actual icon.

    // WIEBO - Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue854');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    

    Best regards,
    Ismael

    #1292008

    Hey Ismael,

    Thanks now it works.

    #1292141

    Hi,

    Shall we close this topic?

    Best regards,
    Jordan Shannon

    #1292148

    Yes :)
    thanks

    #1292425

    Hi Rachel,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘social links’ is closed to new replies.