Tampilkan postingan dengan label likes. Tampilkan semua postingan
Tampilkan postingan dengan label likes. Tampilkan semua postingan

Kamis, 05 Desember 2013

Top Social Stories Plugin and Widget (Utilities)

Top social stories” are your best posts, the most shared on social networks, discover and analyze your most viral posts with this plugin and watch stats: you can see how many Facebook interactions, Google+ and Twitter interactions you have every day for each post and globally for all your blog.




Example of backend analytics:




If you use social plugins for sharing contents on Facebook, Google+ and Twitter or if you use the Facebook comments under your Wordpress blog posts, you should install this plugin, to save and track social interactions data.




Top Social Stories Plugin grabs the total share count from Facebook (facebook like + share + comments), number of Google +1s and grabs the number of times your links are twitted on Twitter for each post of your blog every day.




Example of chart for a single post:




Data are saved in database and can be exported as custom fields linked to each post (which you can use in your theme to show social interactions). This data, daily, are used to create ranks of your Top Social Stories.




These ranks can be added to your siderbars throught widgets and can be used inside posts with shortcodes.
The plugin and the widget have a lot of parameters to customize your ranks and get useful Top Social Stories list, but if you are novice go with defaults, they are quite good for all blogs.




Features list:

  • works also for custom post types

  • easy to read stats on a period, with trends (which post is going viral, which is going down)

  • daily stats with trends, and stats over a period

  • save historical data for each post and draw line chart for social interactions both globally (all posts) and for each single post

  • show authors rank for a period and for today, who is your best author?

  • customize the widget to show/hide total count number

  • customize the widget to show/hide featured images

  • customize the widget to force include of posts (if you have paid content to push)

  • customize the widget to optionally add automatically a tag to posts that enter a rank

  • export data to custom fields to show counters inside your theme with php!

  • include a useful setting to refresh Facebook cache



Version history:

  • october 2013 first release; v.1.0

  • v.1.1 – Added support for Google+, small graphic improvements. Bug fixed: hide draft posts, fixed wrong count in authors count and minor fixes, support for custom post types. NOTE: users who have installed the 1.0 version must deactivate and reactivate the plugin to make the update.

  • v.1.2 – Better support for custom post types. Small bug fixed (removed articles without likes from stats and ranks, addedd messages when empty ranks, and more…). New chart period navigation.

Rabu, 04 Desember 2013

jQueryFacebookWall (Social Networks)


jQueryFacebookWall is a jquery plugin that will build a timeline or wall style post feed on your website with your Facebook account data. jQueryFacebookWall includes options to show events, likes, photos, and albums. It also includes a Facebook style lightbox to browse photo galleries. And best of all, it has user interactions so photos, posts, and comments can be liked or commented on. See it in action at http://ironlasso.com/jqueryfacebookwall-plugin/



New Features


*Now does not require php!




Updates



August 23, 2013



  • Updated Facebook Login Permissions Requests. Some users where having when trying to like or comment on lightbox images.


    jQueryFacebookWall.js line 1036




  • Safari Long Date Display bug fix. jQueryFacebookWall.js


    jQueryFacebookWall.js line 1098-1103




  • Added a click event to set focus on the comment box from the comment link in the lightbox.


    jQueryFacebookWall.js line 270-281






August 18, 2013



  • FB Graph change causes like count to display as ‘undefined’.


    Fix changes to:


    jQueryFacebookWall.js line 661, added a summary field to likes


    "&fields=id,comments.limit("+$this.options.comments.limit+").fields(id,created_time,like_count,from,message),status_type,picture, full_picture, source, properties, name, caption, description, link, from,message,story,likes,object_id,shares"+

    replace with

    "&fields=id,comments.limit("+$this.options.comments.limit+").fields(id,created_time,like_count,from,message),status_type,picture, full_picture, source, properties, name, caption, description, link, from,message,story,likes.summary(true),object_id,shares"+



    templates/story.ejs line 79, display like count from summary field.


    <% if(this.likes){ %><%=this.likes.count%><% } %>

    replaced with

    <% if(this.likes){ %><%=this.likes.summary.total_count%><% } %>


    If your interested in the FB graph change details see https://developers.facebook.com/blog/post/2013/06/26/october-2013-platform-changes


    You can replace the entire files if you have not done any custom work to those files, otherwise I suggest finding that code and replacing it. Sorry for the trouble.







June 27, 2013


  • jQueryFacebookWall.js Updates to debugging options. Pops an alert if the Facebook App Access Token is invalid.

  • Updated where the App Access Token is stored. Changed from .php to .html so plugin doesn’t require php.