Version Description
- Fixed: Cannot add Facebook feed if the page title contains slash
Download this release
Release Info
Developer | webdorado |
Plugin | WD Facebook Feed – Custom Facebook Feed Plugin |
Version | 1.1.10 |
Comparing to | |
See all releases |
Code changes from version 1.1.9 to 1.1.10
- changelog.txt +2 -0
- facebook-feed-wd.php +2 -2
- framework/WDFacebookFeed.php +2 -1
- readme.txt +4 -1
changelog.txt
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
== Changelog ==
|
|
|
|
|
2 |
|
3 |
= 1.1.9 =
|
4 |
* Added: Feed edit links for Elementor widget.
|
1 |
== Changelog ==
|
2 |
+
= 1.1.10 =
|
3 |
+
* Fixed: Cannot add Facebook feed if the page title contains slash
|
4 |
|
5 |
= 1.1.9 =
|
6 |
* Added: Feed edit links for Elementor widget.
|
facebook-feed-wd.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Facebook Feed by 10Web
|
5 |
* Plugin URI: https://10web.io/plugins/wordpress-facebook-feed/?utm_source=facebook_feed&utm_medium=free_plugin
|
6 |
* Description: Facebook Feed by 10Web is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
|
7 |
-
* Version: 1.1.
|
8 |
* Author: 10Web
|
9 |
* Author URI: https://10web.io/plugins/?utm_source=facebook_feed&utm_medium=free_plugin
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -15,7 +15,7 @@ define( 'WD_FFWD_URL', plugins_url( plugin_basename( dirname( __FILE__ ) ) ) );
|
|
15 |
define( 'WD_FB_PREFIX', 'ffwd' );
|
16 |
define( 'WD_FB_IS_FREE', TRUE );
|
17 |
if (! defined( 'FFWD_VERSION' ) ){
|
18 |
-
define ('FFWD_VERSION',"1.1.
|
19 |
}
|
20 |
|
21 |
add_action('admin_notices', 'ffwd_login_notice');
|
4 |
* Plugin Name: Facebook Feed by 10Web
|
5 |
* Plugin URI: https://10web.io/plugins/wordpress-facebook-feed/?utm_source=facebook_feed&utm_medium=free_plugin
|
6 |
* Description: Facebook Feed by 10Web is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
|
7 |
+
* Version: 1.1.10
|
8 |
* Author: 10Web
|
9 |
* Author URI: https://10web.io/plugins/?utm_source=facebook_feed&utm_medium=free_plugin
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
define( 'WD_FB_PREFIX', 'ffwd' );
|
16 |
define( 'WD_FB_IS_FREE', TRUE );
|
17 |
if (! defined( 'FFWD_VERSION' ) ){
|
18 |
+
define ('FFWD_VERSION',"1.1.10");
|
19 |
}
|
20 |
|
21 |
add_action('admin_notices', 'ffwd_login_notice');
|
framework/WDFacebookFeed.php
CHANGED
@@ -503,8 +503,9 @@ $ffwd_info_options[$ffwd_option_db] =((isset($_POST[$ffwd_option_db])) ? esc_htm
|
|
503 |
if($fb_page == null){
|
504 |
die(0);
|
505 |
}
|
|
|
506 |
|
507 |
-
$_POST['content_url'] = "https://www.facebook.com/" . $
|
508 |
$_POST['page_access_token'] = $fb_page->access_token;
|
509 |
|
510 |
|
503 |
if($fb_page == null){
|
504 |
die(0);
|
505 |
}
|
506 |
+
$fb_page_name = str_replace("/","",$fb_page->name);
|
507 |
|
508 |
+
$_POST['content_url'] = "https://www.facebook.com/" . $fb_page_name . "-" . $fb_page->id . "/";
|
509 |
$_POST['page_access_token'] = $fb_page->access_token;
|
510 |
|
511 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: customizable facebook feed, facebook, facebook feed, facebook group, faceb
|
|
4 |
Requires at least: 3.4
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -105,6 +105,9 @@ The plugin uses Facebook API to get public data from Facebook. All the received
|
|
105 |
|
106 |
== Changelog ==
|
107 |
|
|
|
|
|
|
|
108 |
= 1.1.9 =
|
109 |
* Added: Feed edit links for Elementor widget.
|
110 |
|
4 |
Requires at least: 3.4
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 5.2
|
7 |
+
Stable tag: 1.1.10
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
105 |
|
106 |
== Changelog ==
|
107 |
|
108 |
+
= 1.1.10 =
|
109 |
+
* Fixed: Cannot add Facebook feed if the page title contains slash
|
110 |
+
|
111 |
= 1.1.9 =
|
112 |
* Added: Feed edit links for Elementor widget.
|
113 |
|