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
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
- New Single Column Layout
- Loading Feed Posts is now optional, you can just show events or albums etc if you want
- Feed, Likes, Events, Alubms, Photos order is now customizable
- Localization added, translations for italiano, francais, espanol, and svenska + easy to add other languages just add the json translation hash
- Now does not require php!
Updates
January 4, 2014
- New Featrues Added!
- Updated light box image centering to be all css and js, also took the 100% width off light box images so they don’t look pixelated.
- Updated the album height for ie7 and 8.
- Plugin Path bug fix.
- Facebook SDK FB.init bug fix.
- Added tighter lightbox css name spacing to reduce style collisions with other light boxes that may be installed.
-
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.
No comments:
Post a Comment