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

    Hi, I am looking to add the Facebook messenger icon to the available icons usable in the top of the header and footer/sockets in Enfold.
    I have tried to use the previous thred on this (https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options) but with no success at all.
    Can anyone advise on a solution that is not using the app intergration from FaceBook?

    cheers
    Chris

    #1284665

    Hey Chris,

    Thanks for contacting us and sorry for the late reply!

    Have you uploaded your custom icon in Enfold theme options already? If not, please do so and then create temporary admin logins and post them here privately so we can add the icon among social icons for you :)

    Best regards,
    Yigit

    #1284721

    Hi Yigit,

    I have not been able to add the custom icon, unfortunately – I am having issues with this stage also?
    Each time I tried to add from Fontello or similar it was not accepting the files.

    Please advise if you are able to help with this also?

    much appreciated,

    Chris

    #1284724

    Hi Chris,

    Could you please share the screenshot of the icon you would like to add so we can download it from https://fontello.com/?

    Also, please post WP admin logins as we are going to need them to upload the icon and add custom code to functions.php file :)

    Best regards,
    Yigit

    #1286083

    as you may know, Yigit the fontello site does not hold the Facebook Messenger Icon – this is the first issue I was having?

    #1286691

    Hi,

    I uploaded two Messenger icons that I downloaded from Flaticon – https://imgur.com/a/tkGAV6J
    Please upload them on your website – https://www.mediafire.com/file/4qf1x2fvm9o02bn/fontello-0fd1deab.zip/file

    If you need further assistance, please create temporary admin logins and post them here privately :)

    Best regards,
    Yigit

    #1287459

    Hi Yigit, thanks for the further help – I missed your messege as it was flagged as spam – but all good now.
    I downloaded and installed the zip folder – still to no effect even with the code added.

    I have added you as an admin – see details below to use.
    Please advise when this action will be taken as I am very nervous about another admin in the site Yigit.

    #1287466

    Hi Chris,

    I added following code to functions.php file of your child theme

    
    // Register Messenger icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons['messenger'] = array( 'font' =>'messenger', 'icon' => 'ue801');
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons['Messenger'] = 'messenger';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Added following code to bottom of Quick CSS field for hover state of the Messenger icon

    #top #wrap_all .av-social-link-messenger:hover a {
        color: #fff;
        background-color: #A033FF;
    }

    Please review your website :)

    Best regards,
    Yigit

    #1287475

    Hi Yigit,

    You are amazing…and have made my day with this help.
    Thanks for your time and effort on this.

    I have removed your login if that is okay – saves me getting paranoid for no reason:)

    Have a great day,

    cheers
    Chris

    #1287486

    Hi Chris,

    Yes, that is totally fine. That is why we request temporary logins :)

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘How can I add messenger icon in enfold theme social icons in header?’ is closed to new replies.