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

    Hi,

    I would like to add a phone icon, that flips with the phone number, in the social icons (linkedin and e-mail at the top right of the website). Is that possible ?

    Also, I’d like to flip the phone icon in the button row. Is that possible ?

    I’m open to other solutions :-).

    Thanks a lot !

    #1331779

    Hey MarcassinFou,

    Thank you for the inquiry.

    How would you like the phone number to display once it is visible? There seems to be not enough space beside the other two icons.

    In the button row, you can set the Button Label of the phone number to only display on hover. Edit the icon, go to the Styling > Appearance panel, then set the Button Label display to “Display on hover”. You can then set the actual phone number as the Button Label in the Content > Button panel.

    Best regards,
    Ismael

    #1331819

    Thanks for the answer.

    It would be great if it could appear with the social incon (its my client asking for that …). Maybe the phone icon with the phone number that appear below. I don’t know. Or just the phone icon with the number on hover …

    For the button row, finally I took the option to display only on hover. But If I click on it, i’m redirected to the top of the page.

    Thanks :-)

    #1331823

    Site is on maintenance mode.

    #1331999

    Someone ?

    #1332268

    Hi,

    Those options are not available by default. What we did is used one of the social links, VK in this case, and replaced the icon with a phone by editing the functions.php file. You can modify the phone number in the Enfold > Social Profiles panel.

    We recommend installing a child theme if you want to preserve the modification. You can use this filter in the functions.php file to use a different the font icon for the VK social profile.

    // adjust font icon
    function avf_default_icons_mod($icons)
    {
        $icons['vk'] = array('font' => 'entypo-fontello', 'icon' => 'ue854');
        return $icons;
    }
    add_filter('avf_default_icons', 'avf_default_icons_mod', 10, 1);
    

    // https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

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