WD Facebook Feed – Custom Facebook Feed Plugin - Version 1.0.13

Version Description

  • Changed: Featured plugins
  • Fixed: Bug with albums
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 WD Facebook Feed – Custom Facebook Feed Plugin
Version 1.0.13
Comparing to
See all releases

Code changes from version 1.0.12 to 1.0.13

admin/views/FFWDViewInfo_ffwd.php CHANGED
@@ -930,7 +930,9 @@ class FFWDViewInfo_ffwd
930
  <?php
931
  foreach ($theme_rows as $theme_row) {
932
  ?>
933
- <option <?php echo ($theme_row->default_theme) ? 'selected="selected"' : ''; ?>
 
 
934
  value="<?php echo $theme_row->id; ?>"><?php echo $theme_row->name; ?></option>
935
  <?php
936
  }
930
  <?php
931
  foreach ($theme_rows as $theme_row) {
932
  ?>
933
+ <option <?php
934
+ ($row->theme!='') ? selected( $theme_row->id, $row->theme ) : selected( $theme_row->id, $theme_row->default_theme );
935
+ ?>
936
  value="<?php echo $theme_row->id; ?>"><?php echo $theme_row->name; ?></option>
937
  <?php
938
  }
facebook-feed-wd.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Facebook Feed WD
5
  * Plugin URI: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
6
  * Description:Facebook Feed WD is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
7
- * Version: 1.0.12
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -729,7 +729,7 @@ add_action('init', 'ffwd_language_load');
729
  function ffwd_version()
730
  {
731
 
732
- $version = '1.0.12';
733
 
734
  if (get_option('ffwd_version') === false) {
735
  add_option('ffwd_version', $version);
4
  * Plugin Name: Facebook Feed WD
5
  * Plugin URI: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
6
  * Description:Facebook Feed WD is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
7
+ * Version: 1.0.13
8
  * Author: WebDorado
9
  * Author URI: https://web-dorado.com/
10
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
729
  function ffwd_version()
730
  {
731
 
732
+ $version = '1.0.13';
733
 
734
  if (get_option('ffwd_version') === false) {
735
  add_option('ffwd_version', $version);
featured/featured.php CHANGED
@@ -133,6 +133,13 @@ function spider_featured($current_plugin = '') {
133
  'content' => 'Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.',
134
  'href' => 'https://web-dorado.com/products/wordpress-google-maps-plugin.html'
135
  ),
 
 
 
 
 
 
 
136
  "facebook-feed-wd" => array(
137
  'title' => '',
138
  'text' => '',
133
  'content' => 'Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.',
134
  'href' => 'https://web-dorado.com/products/wordpress-google-maps-plugin.html'
135
  ),
136
+ "ad-manager-wd" => array(
137
+ 'title' => 'AD Manager WD',
138
+ 'text' => 'AD Manager WD plugin',
139
+ 'content' => 'Ad Manager WD is functional and comprehensive plugin which is created to help you monetize your WordPress website with ads.',
140
+ 'href' => 'https://web-dorado.com/products/wordpress-ad-manager-wd.html'
141
+ ),
142
+
143
  "facebook-feed-wd" => array(
144
  'title' => '',
145
  'text' => '',
featured/images/ad-manager-wd.png ADDED
Binary file
featured/style.css CHANGED
@@ -75,6 +75,7 @@
75
  #main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
76
  #main_featured_plugins_page #featured-plugins-list li.post-slider .product {background:url("images/post-slider.png") center center no-repeat;}
77
  #main_featured_plugins_page #featured-plugins-list li.wd-google-maps .product {background:url("images/google-maps.png") center center no-repeat;}
 
78
 
79
  #main_featured_plugins_page #featured-plugins-list li .title .heading {
80
  display: block;
75
  #main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
76
  #main_featured_plugins_page #featured-plugins-list li.post-slider .product {background:url("images/post-slider.png") center center no-repeat;}
77
  #main_featured_plugins_page #featured-plugins-list li.wd-google-maps .product {background:url("images/google-maps.png") center center no-repeat;}
78
+ #main_featured_plugins_page #featured-plugins-list li.ad-manager-wd .product {background:url("images/ad-manager-wd.png") center center no-repeat;}
79
 
80
  #main_featured_plugins_page #featured-plugins-list li .title .heading {
81
  display: block;
frontend/models/FFWDModelBlog_style.php CHANGED
@@ -46,10 +46,10 @@ class FFWDModelBlog_style extends FFWDModelMain {
46
  $object->message_tags = json_decode(str_replace("'", esc_html("'"), $row->message_tags));
47
  $object->with_tags = json_decode(str_replace("'", esc_html("'"), $row->with_tags));
48
  $object->story_tags = json_decode(str_replace("'", esc_html("'"), $row->story_tags));
49
- $object->comments = $row->comments;
50
- $object->attachments = $row->attachments;
51
- $object->shares = $row->shares;
52
- $object->who_post = $row->who_post;
53
  array_push($id_object_id_json, $object);
54
  }
55
  $this->id_object_id_json = $id_object_id_json;
46
  $object->message_tags = json_decode(str_replace("'", esc_html("'"), $row->message_tags));
47
  $object->with_tags = json_decode(str_replace("'", esc_html("'"), $row->with_tags));
48
  $object->story_tags = json_decode(str_replace("'", esc_html("'"), $row->story_tags));
49
+ $object->comments = strip_tags($row->comments);
50
+ $object->attachments = strip_tags($row->attachments);
51
+ $object->shares = strip_tags($row->shares);
52
+ $object->who_post = strip_tags($row->who_post);
53
  array_push($id_object_id_json, $object);
54
  }
55
  $this->id_object_id_json = $id_object_id_json;
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Facebook Feed WD ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
4
- Tags: customizable, facebook, facebook events, facebook feed, facebook group, facebook like box, facebook likes, facebook page, facebook photos, facebook plugin, facebook posts, likebox
5
  Requires at least: 3.4
6
  Tested up to: 4.7
7
- Stable tag: 1.0.12
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -66,6 +66,10 @@ Upgrade to [Facebook Feed Pro](https://web-dorado.com/products/wordpress-faceboo
66
 
67
  == Changelog ==
68
 
 
 
 
 
69
  = 1.0.12 =
70
  * Fixed: Changes in database after plugin version update via FTP or AJAX requests with silent activation
71
 
1
  === Facebook Feed WD ===
2
  Contributors: webdorado
3
  Donate link: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
4
+ Tags: customizable facebook feed, facebook, facebook events, facebook feed, facebook group, facebook like box, facebook likes, facebook page, facebook photos, facebook plugin, facebook posts, facebook likebox
5
  Requires at least: 3.4
6
  Tested up to: 4.7
7
+ Stable tag: 1.0.13
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
66
 
67
  == Changelog ==
68
 
69
+ = 1.0.13 =
70
+ * Changed: Featured plugins
71
+ * Fixed: Bug with albums
72
+
73
  = 1.0.12 =
74
  * Fixed: Changes in database after plugin version update via FTP or AJAX requests with silent activation
75