Version Description
- Fix: Resolved jQuery UI draggable bug which was causing issues with drag and drop
Download this release
Release Info
Developer | smashballoon |
Plugin | Custom Facebook Feed |
Version | 1.6.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.6 to 1.6.6.1
- README.txt +7 -4
- custom-facebook-feed-admin.php +8 -2
- custom-facebook-feed.php +1 -1
README.txt
CHANGED
@@ -3,11 +3,11 @@ Contributors: smashballoon
|
|
3 |
Tags: facebook, custom, customizable, feed, events, seo, search engine, responsive, mobile, shortcode, social, status, posts
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.7.1
|
6 |
-
Stable tag: 1.6.6
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
-
The Custom Facebook Feed allows you to display a completely customizable Facebook feed of any public Facebook page or group on your website
|
11 |
|
12 |
== Description ==
|
13 |
|
@@ -109,9 +109,12 @@ You can embed your Facebook feed directly into a template file by using the Word
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
112 |
= 1.6.6 =
|
113 |
-
* New: Now works with groups
|
114 |
-
* Fix: Fixed an issue with the 'Show posts by others' option not working correctly in the previous version
|
115 |
|
116 |
= 1.6.4 =
|
117 |
* New: Added localization support. Full support for various languages coming soon
|
3 |
Tags: facebook, custom, customizable, feed, events, seo, search engine, responsive, mobile, shortcode, social, status, posts
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.7.1
|
6 |
+
Stable tag: 1.6.6.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
+
The Custom Facebook Feed allows you to display a completely customizable Facebook feed of any public Facebook page or group on your website
|
11 |
|
12 |
== Description ==
|
13 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 1.6.6.1 =
|
113 |
+
* Fix: Resolved jQuery UI draggable bug which was causing issues with drag and drop
|
114 |
+
|
115 |
= 1.6.6 =
|
116 |
+
* New: Now works with groups
|
117 |
+
* Fix: Fixed an issue with the 'Show posts by others' option not working correctly in the previous version
|
118 |
|
119 |
= 1.6.4 =
|
120 |
* New: Added localization support. Full support for various languages coming soon
|
custom-facebook-feed-admin.php
CHANGED
@@ -1531,8 +1531,14 @@ add_action( 'admin_enqueue_scripts', 'cff_admin_style' );
|
|
1531 |
//Enqueue admin scripts
|
1532 |
function cff_admin_scripts() {
|
1533 |
wp_enqueue_script( 'cff_admin_script', plugin_dir_url( __FILE__ ) . 'js/cff-admin-scripts.js' );
|
1534 |
-
if( !wp_script_is('jquery-ui') ) {
|
1535 |
-
wp_enqueue_script(
|
|
|
|
|
|
|
|
|
|
|
|
|
1536 |
}
|
1537 |
wp_enqueue_script( 'hoverIntent' );
|
1538 |
}
|
1531 |
//Enqueue admin scripts
|
1532 |
function cff_admin_scripts() {
|
1533 |
wp_enqueue_script( 'cff_admin_script', plugin_dir_url( __FILE__ ) . 'js/cff-admin-scripts.js' );
|
1534 |
+
if( !wp_script_is('jquery-ui-draggable') ) {
|
1535 |
+
wp_enqueue_script(
|
1536 |
+
array(
|
1537 |
+
'jquery',
|
1538 |
+
'jquery-ui-core',
|
1539 |
+
'jquery-ui-draggable'
|
1540 |
+
)
|
1541 |
+
);
|
1542 |
}
|
1543 |
wp_enqueue_script( 'hoverIntent' );
|
1544 |
}
|
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.6
|
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.6.1
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|