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

    Hi there
    I’ve been trying to figure out how to add Houzz to my site pmwyre.com
    I’ve read a few threads but can’t figure out how to edit the child-theme.php
    Is there another way to do it?
    Thanks in advance!
    Jon

    #1404482

    have a look to the docu:
    https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    i do often prefer the option a little bit under the snippet: “Using images or non-Fontello icons” – so you can have multicolored icons

    this to child-theme functions.php:

    function avia_add_houzz_social_icon($icons) {
    $icons['Houzz'] = 'houzz';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_houzz_social_icon', 10, 1);
    

    and f.e. something like this to your quick css:

    #top #wrap_all .av-social-link-houzz a:before{
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        background: url(url-to-your-houzz.png) no-repeat center center;
        background-size: contain;
    }

    you find the new entry on the end of the drop-down list.

    and on blog-layout options you will see too that new social option

    #1404491

    Thanks for the quick reply! Where do I find the child-theme function.php file?

    #1404493

    Dashboard – Appearance – Theme File editor : on the right side you had to click the file you like to edit.
    But: be careful – do not erase the first line of that file ( <?php )

    #1404543

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

    #1404732

    Hi guys thanks for the reply! I feel like an idiot but I just can’t see the child-theme function.php option on the right side? Am I missing something? Or is it the theme functions.php I should add the code to?
    Jon

    #1404778

    Hi,

    Did you install a child theme? You can edit the functions.php file by going to the Appearance > Theme File Editor panel, or access the theme files via FTP.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
    // https://www.webhostinghub.com/help/learn/website/managing-files/editing-filezilla

    If you haven’t installed a child theme, please check the documentation below.

    // https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme

    Best regards,
    Ismael

    #1404793

    @jonroot : this is possible if you have disabled this option for security reasons. This can be done via ftp and an entry in the wp-config.php.
    Caution : please backup that file first, so that accidental changes don’t wreck the whole thing for you.
    have a look to that file and set this to false or delete that entry.

    define('DISALLOW_FILE_EDIT', true);

    Some security Plugins can switch off that Option too. Maybe that is the reason you can’t find it

    on default settings it will look this way:

    #1404822

    That worked – thank you both!

    #1404838

    Hi,

    Great, I’m glad that Ismael and @guenni007 could help you out. 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.