Viewing 1 replies (of 1 total)
  • Plugin Contributor Shiva Poudel

    (@shivapoudel)

    @jirkaxxl If you are using version Social Icons 1.4.1 then use this filter social_icons_get_supported_url_icon to modify the url to support blogspot.com.

    add_filter( 'social_icons_get_supported_url_icon', 'si_141_blogspot_icon' );
    function si_141_blogspot_icon( $icon ) {
    	$new_icon = array(
    		'blogspot.com' => 'blogger',
    	);
    
    	return (array) array_merge( $icon, $new_icon );
    }

    To be honest this has been fixed in our plugin github repo [see fix] and will be available in Social Icons 1.4.2 ??

    • This reply was modified 8 years, 2 months ago by Shiva Poudel.
Viewing 1 replies (of 1 total)
  • The topic ‘Blogger.com / blogspot.com’ is closed to new replies.