Tagged: bluesky, social media
-
AuthorPosts
-
November 4, 2025 at 2:53 pm #1490925
Hello, can you tell me if and, if so, when a ‘Bluesky’ icon will be integrated into the social media profiles?
Thank you.
xelaNovember 5, 2025 at 12:07 pm #1490970you know that and how you can add your own social media icons to the enfold system.
November 5, 2025 at 12:22 pm #1490972No, I did not. Just by adding svg-icons?
The thing is, I want to add this filer directly as a “social media profile” for the List in the header/footer of the page.
Thanks.November 5, 2025 at 4:39 pm #1490981you can use even colorized svgs if you just upload them to media-library.
On media-library list view – you see the ID of that svg file – note it for the code snippet:add this to your child-theme functions.php:
(change the 49551 to your ID)function avia_add_custom_icons($icons){ $icons['bluesky'] = array( 'font' =>'svg_wp-media-library', 'icon' => '49551', 'display_name' => 'Bluesky'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icons', 10, 1); function avia_add_custom_social_icon($icons){ $icons['bluesky'] = 'bluesky'; return $icons; } add_filter('avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1);you will find then the bluesky at the end of the drop-down list where all the others are.
Important: pay attention that your uploaded svg file is not a svg with height/width settings but with viewport.or you can transform your svg on svgomg
November 5, 2025 at 4:41 pm #1490982css depends on the place where you show it – f.e. in the top header:
#top #wrap_all .av-social-link-bluesky:hover a { color: #fff; background-color: #1185fe; } #top #wrap_all .av-social-link-bluesky a svg * { fill: var(--enfold-header_replacement_menu_color); } #top #wrap_all .av-social-link-bluesky a:hover svg * { fill: #FFF }November 6, 2025 at 12:25 pm #1491002November 10, 2025 at 10:46 am #1491104Yes, thanks, we worked it out :)
November 10, 2025 at 11:56 am #1491110Hi,
Great, I’m glad to hear that. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.
Best regards,
Rikard -
AuthorPosts
- The topic ‘Social media profiles — Bluesky’ is closed to new replies.
