Custom Facebook Feed - Version 1.6.2

Version Description

  • New: Post caching now temporarily stores your post data in your WordPress database to allow for super quick load times
  • New: Define your own caching time. Check for new posts every few seconds, minutes, hours or days. You decide.
  • New: Define your own custom text for the 'See More' and 'See Less' buttons
  • New: Add your own CSS class to your feeds
  • New: Define a post limit which is higher or lower than the default 25
  • New: Include the Like box inside or outside of the feed's container
  • New: Customize the event date independently
  • New: Improved layout of admin pages for easier navigation and customization
  • Fix: Provided a fix for the Facebook API duplicate post bug
  • Fix: Fixed bug which ocurred when multiple feeds are displayed on the same page with different text lengths defined
Download this release

Release Info

Developer smashballoon
Plugin Icon 128x128 Custom Facebook Feed
Version 1.6.2
Comparing to
See all releases

Code changes from version 1.6.1 to 1.6.2

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: smashballoon
3
  Tags: facebook, custom, customizable, feed, events, seo, search engine, responsive, mobile, shortcode, social, status
4
  Requires at least: 3.0
5
  Tested up to: 3.6.1
6
- Stable tag: 1.6.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -95,7 +95,7 @@ You can embed the feed directly into a template file by using the WordPress do_s
95
 
96
  == Changelog ==
97
 
98
- = 1.6.0 =
99
  * New: Post caching now temporarily stores your post data in your WordPress database to allow for super quick load times
100
  * New: Define your own caching time. Check for new posts every few seconds, minutes, hours or days. You decide.
101
  * New: Define your own custom text for the 'See More' and 'See Less' buttons
3
  Tags: facebook, custom, customizable, feed, events, seo, search engine, responsive, mobile, shortcode, social, status
4
  Requires at least: 3.0
5
  Tested up to: 3.6.1
6
+ Stable tag: 1.6.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
95
 
96
  == Changelog ==
97
 
98
+ = 1.6.2 =
99
  * New: Post caching now temporarily stores your post data in your WordPress database to allow for super quick load times
100
  * New: Define your own caching time. Check for new posts every few seconds, minutes, hours or days. You decide.
101
  * New: Define your own custom text for the 'See More' and 'See Less' buttons
css/cff-admin-style.css ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #cff-admin .bump-left{
2
+ padding-left: 10px;
3
+ }
4
+ #cff-admin .tooltip{
5
+ display: none;
6
+ }
7
+ #cff-admin hr{
8
+ border: none;
9
+ margin: 25px 0;
10
+ border-bottom: 3px solid #eee;
11
+ }
12
+ #cff-admin select{
13
+ width: 150px;
14
+ }
15
+ #wpbody-content #cff-admin .metabox-holder {
16
+ padding-top: 0;
17
+ }
custom-facebook-feed.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Custom Facebook Feed
4
  Plugin URI: http://smashballoon.com/custom-facebook-feed
5
  Description: Add a completely customizable Facebook feed to your WordPress site
6
- Version: 1.6.1
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later
3
  Plugin Name: Custom Facebook Feed
4
  Plugin URI: http://smashballoon.com/custom-facebook-feed
5
  Description: Add a completely customizable Facebook feed to your WordPress site
6
+ Version: 1.6.2
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later
img/layout-full.png ADDED
Binary file
img/layout-half.png ADDED
Binary file
img/layout-thumb.png ADDED
Binary file
js/cff-admin-scripts.js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ jQuery(document).ready(function() {
2
+ jQuery('#cff-admin .tooltip-link').click(function(){
3
+ jQuery(this).closest('tr').find('.tooltip').slideToggle();
4
+ });
5
+ });