Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • got my php version upgraded and now it works. thanks.

    in reply to: My webpage doesn't open after update 4.2.6 #922539

    Where did you find 4.2.5?

    in reply to: Houzz icon in social shares #488943

    Hello,

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

    in reply to: Houzz icon in social shares #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.

    in reply to: Houzz icon in social shares #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,

    in reply to: Houzz icon in social shares #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.

Viewing 6 posts - 1 through 6 (of 6 total)