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.
Hey Tanja,
You could try using the shortcodes which can be found here: https://kriesi.at/documentation/enfold/social-share-buttons/
Best regards,
Rikard
Not looking for social share. Looking for social icons that link to the social media profile pages.
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