Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1091203

    Hi,
    I need to add the Houzz icon to the the header bar where the social media icons are at https://www.arvidsons.com. I tried to go the functions.php route, but it wouldn’t save the changes. Can you please advise as to how I might add this icon? Seems like a lot of people want it, so surely I can get it? Thank you SO much! I’ve included login info if you can help…
    Justine

    #1091503

    Hey jnightingale,

    Have you tried the solution listed here?

    Best regards,
    Basilis

    #1091671

    Hi Basilis,
    Thank you for that link, but that’s not my issue. I want to add a Houzz link to the header bar at the top of my page and at the bottom where the other social media icons are, and there’s no choice in the back end to do it.
    Thank you!!
    Justine

    #1091909

    Hi Justine,

    Can you try the solution posted on this thread: https://kriesi.at/support/topic/houzz-icon/
    Hope it helps.

    Best regards,
    Nikko

    #1092097

    Hi Nikko,
    That post really doesn’t help me either. I found one post that had some code to add to the functions.php file for getting the Houzz icon to show up in the right header bar, but when I try to do it, it won’t let me and says there is an error.

    Surely there is an easy way to add the Houzz icon with the rest of the social icons in the top right of the site. Can you please advise?

    My private login info is included if you need.
    Thank you!

    #1092580

    Hi jnightingale,

    Can you upgrade the account to an admin temporarily?
    Also can we request for ftp access as well? so we can try to add some codes.
    We’ll post whatever changes we made here.

    Best regards,
    Nikko

    #1092784

    Hi,
    Thank you so much. I changed you to admin, and here’s the ftp info.
    Thanks again!
    Justine

    #1092855

    Hi jnightingale,

    Thanks, the ftp didn’t work but access was upgraded to Administrator and Theme Editor was available so it’s good.
    First I have added a child theme: https://kriesi.at/documentation/enfold/child-theme/
    Then in Enfold > Import/Export > then I uploaded this font: https://ufile.io/a8hwud2j
    Then in the child theme’s functions.php I added this:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['houzz']	 = array( 'font' =>'yelp', 'icon' => 'ue805');
    	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);

    Go to Enfold > Social Profiles and Houzz is available :)

    Best regards,
    Nikko

    #1093379

    Nikko,
    I don’t know what to say, but THANK YOU! I appreciate it so much. Have a great week,
    Justine

    #1093551

    Hi Justine,

    I’m glad that Nikko could help you out and thanks for the kind feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.