• Resolved bhanuprakashl

    (@bhanuprakashl)


    Hi the widget is good but a few of social icons was not there i.e reddit delicious and myspace are not this widget. please help me how to add these few social icons and urls in this widget.
    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Daniel

    (@dannisbet)

    From the FAQ:

    Extending

    Developers can easily add more social media websites by creating a filter in the active theme’s functions.php file like such:

    function add_new_icons($icon_list) {
        $icon_list['Reddit'] = 'reddit';
        $icon_list['MySpace'] = 'myspace';
    
        return $icon_list;
    }
    add_filter('social_icon_accounts', 'add_new_icons');

    The full-website-id should reflect the name of the image you create in each of the icon folder sizes, or in your custom icon directory. It is also used to populate the class field of the icon when the widget displays. The Social Icon Widget looks for .gif, .jpg, .jpeg, and .png in order and returns the first extention it finds.

    Thread Starter bhanuprakashl

    (@bhanuprakashl)

    HI,
    Its working, Thanks a lot , A million thanking for hlep. Thank you soooo much @daniel

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘reddit and myspace social icons are not there ??’ is closed to new replies.