Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1120836

    Hello
    I wanted to add Custom Social Icons to Enfold options
    I used https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options in CSS also I tested it in functions.php but there is no any icon or new name in Your social profiles part in Enfold setting

    regards

    #1120846

    Hello
    I solved my problem
    Just please tell me how I can write some things near the icon

    Many thanks

    #1120854

    Can I ask also how I can change the text which mouse stay on icon show?

    #1120860

    My mean Mouse Hover
    I used this code in Function.php

    if(isset($avia_config[‘use_child_theme_functions_only’])) return;
    function avia_add_custom_icon($icons) {
    $icons[‘fontello’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue800’);
    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[‘reza ‘] = ‘fontello’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);

    #1120944

    Hi ExpertSystemsAdmin,

    This code adds a custom icon, it does not add anything else.

    Could you please attach a mockup of what you’re trying to achieve?

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

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