Forum Replies Created
- 
		AuthorPosts
- 
		
			
				
March 7, 2018 at 12:05 am in reply to: Fatal error: Can't use function return value in write context in #922597got my php version upgraded and now it works. thanks. Where did you find 4.2.5? Hello, I installed a child theme meanwhile and now it’s working. Thanks, Hello 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. Hello, 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, Can 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. 
- 
		AuthorPosts
