Hi, I waited for Enfold 7.1 to raise this as I thought it might be a bug.
I want to add links to Mastodon and BlueSky from my site. I have added an SVG Iconset containing the two icons in the theme settings and these work fine for Pages and Posts. I can add them fine as icons.
I can’t however use these new icons under Social Profiles. I have tried everything to get them to show up and think I have read all the documentation and support pages but nothing seems to work.
Any help and advice please?
Thank you
Hey dogsbody,
These icons are not available on Fontello.com yet, please follow this thread and steps. Please note that it is for TikTok and you will need to change the “charter code” (ue800) to your icons.
Best regards,
Mike
Hi,
I am using an SVG Iconset. Is this still possible?
I have tried many permutations of the code but nothing i am trying works. I currently have…
function avia_add_custom_icon($icons) {
$icons['mastodon'] = array( 'font' =>'mastsky', 'icon' => 'ue800');
return $icons;
}
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
function avia_add_custom_social_icon($icons) {
$icons['mastodon'] = 'Mastodon';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Thank you