Viewing 25 posts - 1 through 25 (of 25 total)
  • Author
    Posts
  • #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 icon

    Thank you for you help
    Aga

    #478370

    Hey 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,
    Elliott

    #478388

    Hi 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

    #478398

    Hi Aga!

    Clicking this button should export a .zip file – http://screencast.com/t/t39er3qT

    Cheers!
    Josue

    #478413

    Hi Josue,

    I tried but it doesn’t export zip file for me

    Not sure why

    cheers Aga

    #478417
    #479870

    Hi Josue
    Thank you, this time it worked, but I can’t add this icon in social shares where you have multiple choice

    It only works when inserted in the post or page as an icon, not on the home page as social shares icon

    cheers

    Aga

    #480874

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    #481762

    Hi

    No problem
    Thank you for your help

    Aga

    #481795

    Hi!

    Thanks, the access works but it is not an Administrator account, please change that.

    Regards,
    Josue

    #481797

    Hi Josue,

    Administrator role should work, try now

    Thanks

    Aga

    #481802

    Check it now.

    #481810

    Hi Josue

    I linked this icon to the houzz profile, but the icon is not lighting up
    Please check with other icons

    Thanks
    Aga

    #481811

    Hey!

    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! 
    Josue

    #481815

    Hey Josue

    Great help, thank you so much

    Have w great weekend,

    Thank you

    Aga :)

    #481824

    You too, glad to help :)

    Regards,
    Josue

    #482847

    Hi Josue,
    How are you?

    #483015
    #487928

    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.

    #487958

    Hey!

    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!
    Josue

    #488407

    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,

    #488444

    Hi!

    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!
    Josue

    #488556

    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.

    #488714

    Hey!

    Seems to be working on your site, try refreshing your browser cache.

    Regards,
    Josue

    #488943

    Hello,

    I installed a child theme meanwhile and now it’s working. Thanks,

Viewing 25 posts - 1 through 25 (of 25 total)
  • The topic ‘Houzz icon in social shares’ is closed to new replies.