Social Crowd WordPress Plugin

The supported social networking sites have changed their api’s and we have shifted our focus in such a degree that the supporting API’s are not longer working for this plugin. As a result we also have no plans to release a new or updated version of the plugin.

The Social Crowd WordPress Plugin grabs the latest counts of your Friends/Fans/Followers etc from your Favorite Social Networks and then outputs them in raw form for you to use them as you wish. The counts that are returned come raw and without styling, so you can make them look and feel like your website. It is the perfect solution to encourage more users to join your network. Download from WordPress.org

Important:

This plugin REQUIRES the PHP Curl Module in order to function. Please make sure it is installed.

Currently Supported Networks:

  • Facebook
  • Google+ (Beta Support)
  • Twitter
  • Linked In (Beta Support)
  • Youtube
  • Vimeo
  • Feedburner

I hope to expand this list to include your favorites ( just leave me some comments on this page or from my contact form ).

A big thanks to DeviantArt’s jwloh for creating the Social.me Icon Set that is used in the plugin’s Administrator, You can check out his work at http://jwloh.deviantart.com/

Basic Usage

After setting up the options on the ‘Social Crowd Options’ page in the wordpress administrator (setting the Social Networks that you want to collect stats from), you can go to the Widgets manager and enable the ‘Social Crowd’ widget. This widget will automatically display the networks that you have selected on the options page, with some limited customizability, and you are good to go.

Intermediate Usage

After configuring the options as indicated in the ‘basic usage’ above, you can enable the ‘Social Crowd Advanced’ widget in the widget administrator. This widget gives you the ability to specifically select the networks that you want to display in the widget area, and also allows you to customize the text that is displayed with the stats.

Additionally there is a shortcode that allows you to access the stats and output them throughout your posts and pages.
The shortcode is used as follows:

[SC_Stats type=network]

where network is the social network that you want to display stats for ie: ‘facebook’, ‘twitter’, etc… or any of the available stats listed in the Available Stats list. If you do not include a ‘type’ of network in the shortcode it will return your facebook stat count by default.

Advanced (Designer/Developer) Usage

The Social Crowd Plugin provides function calls that you can use throughout your theme files to better promote your or your clients social networks. The function documentation is as follows.

The function that you will call is:
SocialCrowd_Stats();
You have two options:

  • Calling the function with a specific network:
    1. Place the function wherever you want the data to be displayed.
    2. Call the function with a specific network name (all lowercase):
      • SocialCrowd_Stats(‘facebook’)
      • SocialCrowd_Stats(‘twitter’)
      • SocialCrowd_Stats(‘youtube’)
      • etc…
    3. Function will echo out the requested Network Stats.
  • Calling the function without a specific network:
    1. Place the function anywhere you want.
    2. Call the function with no options.
      $stats = SocialCrowd_Stats()
    3. The function will return an array with the stats for all your networks.
    4. The array is an associative array that you can you can access like so:
      • $stats[‘facebook’]
      • $stats[‘twitter’]
      • $stats[‘youtube’]
      • etc…

Available Stats

Below are the different statistics that can be displayed by the Social Crowd Plugin. Follow the instructions below to access the appropriate information sets for the stats that you want to display.

The available stats are listed in the following order:
Type of statistic (‘keyword‘), use the keyowrd in the Social Crowd function to retrieve the desired content.

  • Feedburner subscriber count (‘feedburner‘) Number of subscribers to your feed.
  • Facebook Friend/Like Count (‘ facebook‘) Number of friends or page likes.
  • Twitter Follower Count (‘ twitter‘) Number of followers.
  • Twitter Friend Count (‘ twitterFriends‘) Number of Friends you have.
  • Twitter Statuses Count (‘ twitterStatuse‘) Number of status updates you have sent.
  • Twitter Listed Count (‘ twitterListed‘) Number of lists you have been added to.
  • Youtube Friend Count (‘ youtube‘) Number of friends on Youtube.
  • Youtube Subscriber Count (‘ youtubeSubscribers‘) Number of Youtube subscribers.
  • Youtube Viewed Count (‘ youtubeViews‘) Number of videos you have viewed.
  • Youtube Uploaded Views Count (‘ youtubeUploadViews‘) Number of views your uploaded videos have had on Youtube.
  • Vimeo Friend Count (‘ vimeo‘) Number of friends you have on Vimeo.
  • Vimeo Uploads Count (‘ vimeoUploads‘) Number of videos you have uploaded to Vimeo.
  • Vimeo Appears In Count (‘ vimeoAppearsIn‘) Number of videos you appear in on Vimeo.
  • Vimeo Likes Count (‘ vimeoLike‘) Number of videos that you have liked on Vimeo.
  • Google+ Your Circles Count (‘gplusCircles‘) Number of people that you have in your circles.
  • Google+ Others Circles Count (‘gplusInCircles‘) Number of people that have you in their circles.
  • Linked In Connections Count (‘linkedIn‘) Number of Connections.

I hope to expand this list to include your favorites ( just leave me some comments on the Plugin Homepage).

 

FAQ

How do I customize the appearance of the widget?

In the widget options there is a checkbox titled ‘Default Styling’ if you uncheck that box, you can include the following CSS in your own css file with any required changes to apply your custom look and feel to the widget.

<style type=”text/css”>
#scWidget {
margin-bottom: 10px;
}
#scWidget li.scItems {
padding: 0px !important;
clear: both;
}
#scWidget img {
width:48px;
height:48px;
float:left;
margin: 5px 10px;
}
#scWidget div {
padding-top: 10px;
float: left;
font-size: 14px;
}
#scWidget div span {
font-weight: bold;
}
#scBottom {
margin: 5px 0 5px 20px;
clear: both;
font-size: 8px;
}
#scBottom a {

}
</style>

What if my favorite network isn’t supported?

Drop me a line and I will work on getting it added.