Hi there, on my chinese site, I’ve uploaded the Fontello Icon for Weibo but for some reason it isn’t showing under social profiles.
Tried refreshing cache after the theme update, but to no avail. Please could you help me take a look?
Hi Jon!
We cannot login to take a closer look the site locked me out please provide us with working access so we can take a closer look at it and help you resolve the issue.
Cheers!
Vinay
Hi Vinnie, thank you very much for your kind help.
Please refer to the content in the private content section, you should be able to log in now.
Hi!
can you explain further please? about which icon are you talking about? please highlight using screenshots (imgur.com, dropbox), as Chinese is quite difficult for us to understand :).
You need to upload your custom icon to fontello.com and then download it (converted version), so that you can use it for Enfold: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/
Cheers!
Andy
Hi Andy,
Thank you for getting back to me. If you refer to the image, the arrow shows where I upload a weibo icon from Fontello on theme options and created a new social profile. However, it’s blank where the icon should be for some reason.
I tried deleting and reuploading but it’s still the same. Can’t seem to add an additional icon.
Hi!
I changed your code to following one
// Register new icon as a theme icon
function avia_add_custom_icon($icons) {
$icons['weibo_icon'] = array( 'font' =>'weibo', '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['Weibo'] = 'weibo_icon';
return $icons;
}
add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Please review your website now
Regards,
Yigit