Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #391619

    Hello,
    Right after the new updated of the template, we have some issues with some of the stuff in the site most of them were fixed, but we currently aren’t able to put back the Icon From Houzz. we follow the directions from this link:
    https://kriesi.at/support/topic/add-social-media-icon-to-header/
    add Houzz in the drop down, also add the code ‘houzz’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue803’),
    I got the code from the website fontello.com fro Houzz.
    So far all the steps to create a new custom icon were done but in the is displaying the wrong icon, link is working but not correct icon
    http://www.foreverpools.com/ ( see header icon – social media)
    Ill appreciate your help
    Fabiola

    • This topic was modified 9 years, 1 month ago by ohayoweb.
    #391756

    Hey Fabiola!

    Can you send us a WordPress login? You can set your reply as private if you wish.

    Cheers!
    Elliott

    #391856
    This reply has been marked as private.
    #392293

    Hey!

    I logged in but I did not see any extra font files in Dashboard > Enfold > Import/Export > Iconfont Manager.

    I’m not really sure which icon is “houzz” on the fontello site either, http://fontello.com/. Go ahead and create the zip file again and upload it into the Enfold settings. Also take a screenshot of the specific icon so we can note which code it uses.

    Best regards,
    Elliott

    • This reply was modified 9 years, 1 month ago by Elliott.
    #392586

    Ellito,
    I can’t paste or attach an image,here is the link for the icon Houzz http://http://fontello.com/#search=houzz
    I also uploaded under icon font manager in the enfold theme options.
    Let me know whats next :)
    Thanks

    #392953

    Hi!

    You can add this on functions.php:

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['houzz']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    // Add new icon here
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Houzz'] = 'houzz';
    // Add new icon here
    return $icons;
    }

    Select the Houzz icon inside the Social Profiles panel.

    Best regards,
    Ismael

    #399722

    Hi Ismael,
    i just add the lines you provided me into the file Funtions.php and uploaded using a ftp client, but i don’t see any change.
    Fabiola

    #401278

    Hey!

    I can’t see the code on functions.php. Please remove the modifications from the previous thread then add the code above. It will break the theme when you add these mods simultaneously.

    Best regards,
    Ismael

    #401617

    Ismael, I did upload the code and remove the previos, si any way i can attached to you the php file so you can take a look?
    Thanks

    #401855

    Question i just found a file with the name functions-enfold.php the company who customize this template made some manual changes but after the update a lot of them crash and have to fixed, one of those was this icon, but when i was reviewing the file function.php they it take my attention this file, is this something from the template? or is probably created by them, how i know if the theme is reading this file and not the original function.php.

    #402442

    Hey!

    Are you using a child theme? If you are, then the theme is using the functions.php in your child theme folder. If not, it’s using the functions.php in the Enfold folder.

    Regards,
    Rikard

    #414064
    This reply has been marked as private.
    #414388

    Hey!

    We don’t want to break the site as well so we have to make sure that you remove all modifications suggested above. Did you remove all of them? I tried to create a test page but when I update the page, I get this error:

    Fatal error: Internal Zend error – Missing class information for in /home/jmarkina/public_html/wp-content/plugins/google-analytics-for-wordpress/admin/api-libs/googleanalytics/class-api-googleanalytics.php on line 5

    Best regards,
    Ismael

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