Viewing 3 replies - 1 through 3 (of 3 total)
  • Yeh !

    Why no plugin do add Houzz ?? It’s over used !

    Plugin Author nisbetcreative

    (@nisbetcreative)

    You can add custom profiles to the plugin through the functions.php file, as outlined here: https://wordpress.org/plugins/social-media-icons-widget/faq/

    To add Houzz:

    function add_new_icons($icon_list) {
        $icon_list['Houzz'] = 'houzz';
    
        return $icon_list;
    }
    add_filter('social_icon_accounts', 'add_new_icons');

    Ideally where would one place this code in the functions.php file? Also does add_filter have to be after the function?

    A non-developer here, trying to add the Bandcamp logo. Adding it anywhere in my functions.php file is generating errors.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can you add Houzz?’ is closed to new replies.