-
AuthorPosts
-
July 24, 2015 at 11:13 am #478128
Hi I was thinking if its possible to add http://www.houzz.co.uk/?irb=1 houzz icon in social shares I added as rss for now
next to linked in iconThank you for you help
AgaJuly 24, 2015 at 8:17 pm #478370Hey tutifruti!
Yes, see here, http://kriesi.at/documentation/enfold/custom-social-icons/, for how to add new icons to the theme and register them as social icons.
Regards,
ElliottJuly 24, 2015 at 9:10 pm #478388Hi Elliott
Thank you for you help, I could’t do it
Found only one icon for houzz and it wasn’t in zip file
sorry for that
thanks Aga
July 24, 2015 at 9:50 pm #478398Hi Aga!
Clicking this button should export a .zip file – http://screencast.com/t/t39er3qT
Cheers!
JosueJuly 24, 2015 at 10:45 pm #478413Hi Josue,
I tried but it doesn’t export zip file for me
Not sure why
cheers Aga
July 24, 2015 at 11:15 pm #478417Here you go:
https://www.dropbox.com/s/495xphd8lt516tk/fontello-621b421c.zip?dl=0Cheers!
JosueJuly 28, 2015 at 6:48 pm #479870Hi Josue
Thank you, this time it worked, but I can’t add this icon in social shares where you have multiple choiceIt only works when inserted in the post or page as an icon, not on the home page as social shares icon
cheers
Aga
July 30, 2015 at 7:31 pm #480874Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueAugust 2, 2015 at 1:10 pm #481762Hi
No problem
Thank you for your helpAga
August 2, 2015 at 7:34 pm #481795Hi!
Thanks, the access works but it is not an Administrator account, please change that.
Regards,
JosueAugust 2, 2015 at 7:37 pm #481797Hi Josue,
Administrator role should work, try now
Thanks
Aga
August 2, 2015 at 8:34 pm #481802Check it now.
August 2, 2015 at 9:42 pm #481810Hi Josue
I linked this icon to the houzz profile, but the icon is not lighting up
Please check with other iconsThanks
AgaAugust 2, 2015 at 9:46 pm #481811Hey!
Try adding this code to the Quick CSS:
#top #wrap_all .av-social-link-houzz:hover a { color: #fff; background-color: red; }
Change as needed.
Cheers!
JosueAugust 2, 2015 at 9:54 pm #481815Hey Josue
Great help, thank you so much
Have w great weekend,
Thank you
Aga :)
August 2, 2015 at 10:10 pm #481824You too, glad to help :)
Regards,
JosueAugust 4, 2015 at 5:21 pm #482847Hi Josue,
How are you?August 4, 2015 at 10:04 pm #483015Hi!
Are you referring to Enfold WooCommerce elements and such?
http://kriesi.at/themes/enfold/shop/
http://kriesi.at/themes/enfold-shop/
http://kriesi.at/themes/enfold-photography/my-shop/Regards,
JosueAugust 14, 2015 at 8:03 pm #487928Can you tell me what you did in that step? I have the same problem, it doesn’t show up in the social profile option. Only if I try to insert it onto a page.
August 14, 2015 at 8:47 pm #487958Hey!
Are you using a child theme? the code is meant to be used on a child theme functions.php. If you are not, you can use the following plugin to store it (move the code to Plugins > Edit Functions):
https://wordpress.org/plugins/functionality/Cheers!
JosueAugust 16, 2015 at 6:06 pm #488407Hello,
No I’m not using a child theme. There were already so many changes made to the site so when I installed the child theme, everything went back to default settings. This is the code I used after installing functinality:
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['icon_name'] = array( 'font' =>'fontello', '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['Icon Label'] = 'icon_name'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
I also tried adding the hover effect in the quick CSS but that doesn’t work either.
#top #wrap_all .av-social-link-houzz:hover a { color: #fff; background-color: red; }
Finally, I can’t get the name to change from icon_name to houzz, how do I do that?
Thanks,
August 16, 2015 at 10:29 pm #488444Hi!
Edit the code:
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['houzz'] = array( 'font' =>'fontello', '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['Houzz'] = 'houzz'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Cheers!
JosueAugust 17, 2015 at 5:36 am #488556Hello I tried the new code you supplied
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['houzz'] = array( 'font' =>'fontello', '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['Houzz'] = 'houzz'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
but it only changed the icon from the houzz icon to the pencil edit icon. The name still says icon_name and the hover effect still doesn’t work.
August 17, 2015 at 9:42 am #488714Hey!
Seems to be working on your site, try refreshing your browser cache.
Regards,
JosueAugust 17, 2015 at 3:10 pm #488943Hello,
I installed a child theme meanwhile and now it’s working. Thanks,
-
AuthorPosts
- The topic ‘Houzz icon in social shares’ is closed to new replies.