Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1437787

    Is a shortcode that displays the social media icons that link to the social media profile pages available that can be pasted into a widget? The icons can be black with no box outlines around them.

    #1437803

    Hey Tanja,

    You could try using the shortcodes which can be found here: https://kriesi.at/documentation/enfold/social-share-buttons/

    Best regards,
    Rikard

    #1437808

    Not looking for social share. Looking for social icons that link to the social media profile pages.

    #1437998

    Hi,

    Thank you for the clarification.

    You can add this code in the functions.php file:

    function ava_social_bookmarks_cb() {
      $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
      $social = avia_social_media_icons($social_args, false);
      return $social;
    }
    add_shortcode('ava_social_bookmarks', 'ava_social_bookmarks_cb');

    Then use this shortcode in a text widget.

    [ava_social_bookmarks]
    

    You may need to add this css code:

    #footer .widget ul.social_bookmarks {
        display: inline-flex;
        gap: 0px 10px;
    }
    
    #footer .widget ul.social_bookmarks li {
        border: none
    }

    Best regards,
    Ismael

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