Feed Them Social – Facebook, Instagram, Twitter, YouTube, Pinterest - Version 2.9.7

Version Description

Download this release

Release Info

Developer slickremix
Plugin Icon 128x128 Feed Them Social – Facebook, Instagram, Twitter, YouTube, Pinterest
Version 2.9.7
Comparing to
See all releases

Code changes from version 2.9.6.5 to 2.9.7

admin/class-fts-facebook-options-page.php CHANGED
@@ -45,6 +45,13 @@ class FTS_Facebook_Options_Page {
45
  </h1>
46
  <div class="use-of-plugin">
47
  <?php esc_html_e( 'Change the language, color and more for your facebook feed using the options below.', 'feed-them-social' ); ?>
 
 
 
 
 
 
 
48
  </div>
49
  <!-- custom option for padding -->
50
  <form method="post" class="fts-facebook-feed-options-form" action="options.php" id="fts-facebook-feed-options-form">
@@ -86,7 +93,15 @@ class FTS_Facebook_Options_Page {
86
  <?php esc_html_e( 'Facebook API Token', 'feed-them-social' ); ?>
87
  </h3>
88
  <?php esc_html_e( 'This Facebook Access Token is for Business Pages, Photos and Videos only and is simply used to display the feed. You must be an admin of the business page to get your token. This will NOT work for personal profiles or groups. ', 'feed-them-social' ); ?>
89
- <p>
 
 
 
 
 
 
 
 
90
  <?php
91
  echo sprintf(
92
  esc_html__( '%1$sLogin and get my Access Token%2$s', 'feed-them-social' ),
@@ -101,18 +116,12 @@ class FTS_Facebook_Options_Page {
101
  $test_app_token_id = get_option( 'fts_facebook_custom_api_token' );
102
  $test_app_token_id_biz = get_option( 'fts_facebook_custom_api_token_biz' );
103
  if ( ! empty( $test_app_token_id ) || ! empty( $test_app_token_id_biz ) ) {
104
- $fts_fb_access_token = '226916994002335|ks3AFvyAOckiTA1u_aDoI4HYuuw';
105
  $test_app_token_url = array(
106
  'app_token_id' => 'https://graph.facebook.com/debug_token?input_token=' . $test_app_token_id . '&access_token=' . $test_app_token_id,
107
  );
108
  $test_app_token_url_biz = array(
109
  'app_token_id_biz' => 'https://graph.facebook.com/debug_token?input_token=' . $test_app_token_id_biz . '&access_token=' . $test_app_token_id_biz . '&',
110
- /*'app_token_id' => 'https://graph.facebook.com/oauth/access_token?client_id=7054444020102908771&client_secret=7016612gg8c6a7b5424856282a5358f47b&grant_type=fb_exchange_token&fb_exchange_token=CAAKBNkjL3G2MBAK5jVUp1ZBCYCiLB8ZAdALWTEI4CesM8h3DeI4Jotngv4TKUsQZBwnbw9jiZCgyg0eEmlpiVauTsReKJWBgHe31xWCsbug1Tv3JhXZBEZBOdOIaz8iSZC6JVs4uc9RVjmyUq5H52w7IJVnxzcMuZBx4PThN3CfgKC5E4acJ9RnblrbKB37TBa1yumiPXDt72yiISKci7sqds0WFR3XsnkwQZD'*/
111
  );
112
- // Test App ID
113
- // Leave these for reference:
114
- // App token for FTS APP2: 358962200939086|lyXQ5-zqXjvYSIgEf8mEhE9gZ_M
115
- // App token for FTS APP3: 705020102908771|rdaGxW9NK2caHCtFrulCZwJNPyY!
116
  $test_app_token_response = $fts_functions->fts_get_feed_json( $test_app_token_url );
117
  $test_app_token_response = json_decode( $test_app_token_response['app_token_id'] );
118
  $test_app_token_response_biz = $fts_functions->fts_get_feed_json( $test_app_token_url_biz );
@@ -218,7 +227,14 @@ class FTS_Facebook_Options_Page {
218
  <?php esc_html_e( 'Facebook Page Reviews Access Token', 'feed-them-social' ); ?>
219
  </h3>
220
  <?php esc_html_e( 'This Facebook Access Token works for the Reviews feed only and is simply used to display the feed. You must be an admin of the page to get your token.', 'feed-them-social' ); ?>
221
- <p>
 
 
 
 
 
 
 
222
  <?php
223
  // https://developers.facebook.com/docs/graph-api/reference/page/ratings/
224
  echo sprintf(
45
  </h1>
46
  <div class="use-of-plugin">
47
  <?php esc_html_e( 'Change the language, color and more for your facebook feed using the options below.', 'feed-them-social' ); ?>
48
+ <?php
49
+ echo sprintf(
50
+ esc_html__( 'Please note, use of this plugin is subject to %1$sFacebook\'s Platform Terms%2$s', 'feed-them-social' ),
51
+ '<a href="' . esc_url( 'https://developers.facebook.com/terms/' ) . '" target="_blank">',
52
+ '</a>'
53
+ );
54
+ ?>
55
  </div>
56
  <!-- custom option for padding -->
57
  <form method="post" class="fts-facebook-feed-options-form" action="options.php" id="fts-facebook-feed-options-form">
93
  <?php esc_html_e( 'Facebook API Token', 'feed-them-social' ); ?>
94
  </h3>
95
  <?php esc_html_e( 'This Facebook Access Token is for Business Pages, Photos and Videos only and is simply used to display the feed. You must be an admin of the business page to get your token. This will NOT work for personal profiles or groups. ', 'feed-them-social' ); ?>
96
+
97
+ <?php echo sprintf(
98
+ esc_html__( '%1$sClick the button below to get an access token. This gives us read-only access to get your Facebook posts.%2$s', 'feed-them-social' ),
99
+ '<p>',
100
+ '</p>'
101
+ );
102
+ ?>
103
+
104
+ <p>
105
  <?php
106
  echo sprintf(
107
  esc_html__( '%1$sLogin and get my Access Token%2$s', 'feed-them-social' ),
116
  $test_app_token_id = get_option( 'fts_facebook_custom_api_token' );
117
  $test_app_token_id_biz = get_option( 'fts_facebook_custom_api_token_biz' );
118
  if ( ! empty( $test_app_token_id ) || ! empty( $test_app_token_id_biz ) ) {
 
119
  $test_app_token_url = array(
120
  'app_token_id' => 'https://graph.facebook.com/debug_token?input_token=' . $test_app_token_id . '&access_token=' . $test_app_token_id,
121
  );
122
  $test_app_token_url_biz = array(
123
  'app_token_id_biz' => 'https://graph.facebook.com/debug_token?input_token=' . $test_app_token_id_biz . '&access_token=' . $test_app_token_id_biz . '&',
 
124
  );
 
 
 
 
125
  $test_app_token_response = $fts_functions->fts_get_feed_json( $test_app_token_url );
126
  $test_app_token_response = json_decode( $test_app_token_response['app_token_id'] );
127
  $test_app_token_response_biz = $fts_functions->fts_get_feed_json( $test_app_token_url_biz );
227
  <?php esc_html_e( 'Facebook Page Reviews Access Token', 'feed-them-social' ); ?>
228
  </h3>
229
  <?php esc_html_e( 'This Facebook Access Token works for the Reviews feed only and is simply used to display the feed. You must be an admin of the page to get your token.', 'feed-them-social' ); ?>
230
+
231
+ <?php echo sprintf(
232
+ esc_html__( '%1$sClick the button below to get an access token. This gives us read-only access to get your Facebook reviews.%2$s', 'feed-them-social' ),
233
+ '<p>',
234
+ '</p>'
235
+ );
236
+ ?>
237
+ <p>
238
  <?php
239
  // https://developers.facebook.com/docs/graph-api/reference/page/ratings/
240
  echo sprintf(
admin/class-fts-instagram-options-page.php CHANGED
@@ -71,8 +71,16 @@ class FTS_Instagram_Options_Page {
71
  <?php esc_html_e( 'Instagram Feed Options', 'feed-them-social' ); ?>
72
  </h1>
73
  <div class="use-of-plugin">
74
- <?php esc_html_e( 'Get your Access Token and add a follow button and position it using the options below.', 'feed-them-social' ); ?>
 
 
 
 
 
 
 
75
  </div>
 
76
  <!-- custom option for padding -->
77
  <form method="post" class="fts-facebook-feed-options-form" action="options.php" id="fts-instagram-feed-options-form">
78
  <?php
@@ -88,7 +96,7 @@ class FTS_Instagram_Options_Page {
88
  settings_fields( 'fts-instagram-feed-style-options' );
89
  ?>
90
  <h3>
91
- <?php esc_html_e( 'Instagram Basic API Token', 'feed-them-social' ); ?>
92
  </h3>
93
  <?php
94
 
@@ -106,25 +114,26 @@ class FTS_Instagram_Options_Page {
106
  // print_r( $test_app_token_response );
107
  // echo '</pre>';
108
 
109
- ?>
110
- <p>
111
- <?php
112
- echo esc_html__( 'This is required to make the Instagram Feed work. Click the button below and it will connect to your Instagram Account to get an access token. It will then return to this page and save it in the inputs below. After it finishes you will be able to generate your Instagram feed. Instagram Basic connections do not allow you to show Profile info or Heart/Comment counts. Please use the Instagram Business option to achieve that.', 'feed-them-social' );
113
- ?>
114
- </p>
115
- <p>
116
- <?php
117
 
118
  echo sprintf(
119
  esc_html__( '%1$sLogin and get my Access Token%2$s', 'feed-them-social' ),
120
  '<a href="' . esc_url( 'https://api.instagram.com/oauth/authorize?app_id=206360940619297&redirect_uri=https://www.slickremix.com/instagram-basic-token/&response_type=code&scope=user_profile,user_media&state=' . admin_url( 'admin.php?page=fts-instagram-feed-styles-submenu-page' ) . '' ) . '" class="fts-instagram-get-access-token">',
121
  '</a>'
122
  );
 
 
123
  ?>
124
- </p>
 
125
  <a href="<?php echo esc_url( 'mailto:support@slickremix.com' ); ?>" class="fts-admin-button-no-work" style="margin-top: 14px; display: inline-block"><?php esc_html_e( 'Button not working?', 'feed-them-social' ); ?></a>
126
  </div>
127
-
128
  <div class="fts-clear"></div>
129
 
130
  <div class="feed-them-social-admin-input-wrap" style="margin-bottom:0">
@@ -210,17 +219,21 @@ class FTS_Instagram_Options_Page {
210
  <div id="fb-token-master-wrap" class="feed-them-social-admin-input-wrap" >
211
  <div class="fts-title-description-settings-page">
212
  <h3>
213
- <?php esc_html_e( 'Instagram Business API Token', 'feed-them-social' ); ?>
214
  </h3>
215
  <?php
216
  echo sprintf(
217
- esc_html__( 'You must have your Instagram Account linked to a Facebook Business Page, this is required to make the Instagram Business Feed or Hashtag Feed work. %1$sRead Instructions%2$s. Once you have completed the instructions you can click the button below and it will connect to your Facebook Account to get an access token. It should return a Facebook page or list of pages you are admin of and display which ones are connected to Instagram. Choose one, then click save. The Instagram Business option will allow you to display your profile info and the Heart/Comment counts on your media.', 'feed-them-social' ),
218
  '<a target="_blank" href="' . esc_url( 'https://www.slickremix.com/docs/link-instagram-account-to-facebook/' ) . '">',
219
  '</a>'
220
  );
221
  ?>
222
  <p>
223
- <?php
 
 
 
 
224
 
225
  // call to get instagram account attached to the facebook page
226
  // 1844222799032692 = slicktest fb page (dev user)
71
  <?php esc_html_e( 'Instagram Feed Options', 'feed-them-social' ); ?>
72
  </h1>
73
  <div class="use-of-plugin">
74
+ <?php esc_html_e( 'Get your Access Token and more below. Instagram Basic connections do not allow you to show Profile info or Heart/Comment counts, please use the Instagram Business option to achieve that.', 'feed-them-social' ); ?>
75
+ <?php
76
+ echo sprintf(
77
+ esc_html__( 'Please note, use of this plugin is subject to %1$sFacebook\'s Platform Terms%2$s', 'feed-them-social' ),
78
+ '<a href="' . esc_url( 'https://developers.facebook.com/terms/' ) . '" target="_blank">',
79
+ '</a>'
80
+ );
81
+ ?>
82
  </div>
83
+
84
  <!-- custom option for padding -->
85
  <form method="post" class="fts-facebook-feed-options-form" action="options.php" id="fts-instagram-feed-options-form">
86
  <?php
96
  settings_fields( 'fts-instagram-feed-style-options' );
97
  ?>
98
  <h3>
99
+ <?php esc_html_e( 'Instagram Basic', 'feed-them-social' ); ?>
100
  </h3>
101
  <?php
102
 
114
  // print_r( $test_app_token_response );
115
  // echo '</pre>';
116
 
117
+
118
+ echo sprintf(
119
+ esc_html__( '%1$sClick the button below to get an access token. This gives us read-only access to get your Instagram posts.%2$s', 'feed-them-social' ),
120
+ '<p>',
121
+ '</p>'
122
+ );
123
+
 
124
 
125
  echo sprintf(
126
  esc_html__( '%1$sLogin and get my Access Token%2$s', 'feed-them-social' ),
127
  '<a href="' . esc_url( 'https://api.instagram.com/oauth/authorize?app_id=206360940619297&redirect_uri=https://www.slickremix.com/instagram-basic-token/&response_type=code&scope=user_profile,user_media&state=' . admin_url( 'admin.php?page=fts-instagram-feed-styles-submenu-page' ) . '' ) . '" class="fts-instagram-get-access-token">',
128
  '</a>'
129
  );
130
+
131
+
132
  ?>
133
+
134
+
135
  <a href="<?php echo esc_url( 'mailto:support@slickremix.com' ); ?>" class="fts-admin-button-no-work" style="margin-top: 14px; display: inline-block"><?php esc_html_e( 'Button not working?', 'feed-them-social' ); ?></a>
136
  </div>
 
137
  <div class="fts-clear"></div>
138
 
139
  <div class="feed-them-social-admin-input-wrap" style="margin-bottom:0">
219
  <div id="fb-token-master-wrap" class="feed-them-social-admin-input-wrap" >
220
  <div class="fts-title-description-settings-page">
221
  <h3>
222
+ <?php esc_html_e( 'Instagram Business', 'feed-them-social' ); ?>
223
  </h3>
224
  <?php
225
  echo sprintf(
226
+ esc_html__( 'The Instagram Business option will allow you to display your profile info and the Heart/Comment counts for your posts. You must have your Instagram Account linked to a Facebook Business Page, this is required to make the Instagram Business Feed or Hashtag Feed work. %1$sRead Instructions%2$s.', 'feed-them-social' ),
227
  '<a target="_blank" href="' . esc_url( 'https://www.slickremix.com/docs/link-instagram-account-to-facebook/' ) . '">',
228
  '</a>'
229
  );
230
  ?>
231
  <p>
232
+ <?php echo sprintf(
233
+ esc_html__( '%1$sClick the button below to get an access token. This gives us read-only access to get your Instagram posts.%2$s', 'feed-them-social' ),
234
+ '<p>',
235
+ '</p>'
236
+ );
237
 
238
  // call to get instagram account attached to the facebook page
239
  // 1844222799032692 = slicktest fb page (dev user)
feed-them.php CHANGED
@@ -7,18 +7,18 @@
7
  * Plugin Name: Feed Them Social - for Twitter feed, Youtube, and more
8
  * Plugin URI: https://feedthemsocial.com/
9
  * Description: Display a Custom Facebook feed, Instagram feed, Twitter feed and YouTube feed on pages, posts or widgets.
10
- * Version: 2.9.6.5
11
  * Author: SlickRemix
12
  * Author URI: https://www.slickremix.com/
13
  * Text Domain: feed-them-social
14
  * Domain Path: /languages
15
  * Requires at least: WordPress 4.0.0
16
- * Tested up to: WordPress 5.8.1
17
- * Stable tag: 2.9.6.5
18
  * License: GPLv2 or later
19
  * License URI: https://www.gnu.org/licenses/gpl-3.0.html
20
  *
21
- * @version 2.9.6.5
22
  * @package FeedThemSocial/Core
23
  * @copyright Copyright (c) 2012-2021 SlickRemix
24
  *
@@ -31,7 +31,7 @@
31
  *
32
  * Makes sure any js or css changes are reloaded properly. Added to enqued css and js files throughout!
33
  */
34
- define( 'FTS_CURRENT_VERSION', '2.9.6.5' );
35
 
36
  define( 'FEED_THEM_SOCIAL_NOTICE_STATUS', get_option( 'rating_fts_slick_notice', false ) );
37
 
7
  * Plugin Name: Feed Them Social - for Twitter feed, Youtube, and more
8
  * Plugin URI: https://feedthemsocial.com/
9
  * Description: Display a Custom Facebook feed, Instagram feed, Twitter feed and YouTube feed on pages, posts or widgets.
10
+ * Version: 2.9.7
11
  * Author: SlickRemix
12
  * Author URI: https://www.slickremix.com/
13
  * Text Domain: feed-them-social
14
  * Domain Path: /languages
15
  * Requires at least: WordPress 4.0.0
16
+ * Tested up to: WordPress 5.8.2
17
+ * Stable tag: 2.9.7
18
  * License: GPLv2 or later
19
  * License URI: https://www.gnu.org/licenses/gpl-3.0.html
20
  *
21
+ * @version 2.9.7
22
  * @package FeedThemSocial/Core
23
  * @copyright Copyright (c) 2012-2021 SlickRemix
24
  *
31
  *
32
  * Makes sure any js or css changes are reloaded properly. Added to enqued css and js files throughout!
33
  */
34
+ define( 'FTS_CURRENT_VERSION', '2.9.7' );
35
 
36
  define( 'FEED_THEM_SOCIAL_NOTICE_STATUS', get_option( 'rating_fts_slick_notice', false ) );
37
 
includes/feed-them-functions.php CHANGED
@@ -9,7 +9,6 @@ namespace feedthemsocial;
9
  */
10
  class feed_them_social_functions {
11
 
12
-
13
  /**
14
  * Construct
15
  *
@@ -295,7 +294,7 @@ class feed_them_social_functions {
295
  ob_start();
296
 
297
  if ( ! isset( $_GET['locations'] ) ) {
298
- $fb_url = 'fts-facebook-feed-styles-submenu-page' == $_GET['page'] ? wp_remote_fopen( 'https://graph.facebook.com/me/accounts?fields=locations{name,id,page_username,locations,store_number,store_location_descriptor,access_token},name,id,link,access_token&access_token=' . $_GET['code'] . '&limit=25' ) : wp_remote_fopen( 'https://graph.facebook.com/me/accounts?fields=instagram_business_account{id,username,profile_picture_url},locations{instagram_business_account{profile_picture_url,id,username},name,id,page_username,locations,store_number,store_location_descriptor,access_token},name,id,link,access_token&access_token=' . $_GET['code'] . '&limit=25' );
299
  $fb_token_response = isset( $_REQUEST['next_url'] ) ? wp_remote_fopen( esc_url_raw( $_REQUEST['next_url'] ) ) : $fb_url;
300
  $test_fb_app_token_response = json_decode( $fb_token_response );
301
  $_REQUEST['next_url'] = isset( $test_fb_app_token_response->paging->next ) ? esc_url_raw( $test_fb_app_token_response->paging->next ) : '';
@@ -304,9 +303,9 @@ class feed_them_social_functions {
304
  $test_fb_app_token_response = json_decode( $fb_token_response );
305
  }
306
 
307
- // echo '<pre>';
308
- // print_r($test_fb_app_token_response);
309
- // echo '</pre>';
310
  // Make sure it's not ajaxing!
311
  if ( ! isset( $_GET['load_more_ajaxing'] ) ) {
312
  // ******************
9
  */
10
  class feed_them_social_functions {
11
 
 
12
  /**
13
  * Construct
14
  *
294
  ob_start();
295
 
296
  if ( ! isset( $_GET['locations'] ) ) {
297
+ $fb_url = 'fts-facebook-feed-styles-submenu-page' == $_GET['page'] ? wp_remote_fopen( 'https://graph.facebook.com/me/accounts?fields=name,id,link,access_token&access_token=' . $_GET['code'] . '&limit=25' ) : wp_remote_fopen( 'https://graph.facebook.com/me/accounts?fields=instagram_business_account{id,username,profile_picture_url},name,id,link,access_token&access_token=' . $_GET['code'] . '&limit=25' );
298
  $fb_token_response = isset( $_REQUEST['next_url'] ) ? wp_remote_fopen( esc_url_raw( $_REQUEST['next_url'] ) ) : $fb_url;
299
  $test_fb_app_token_response = json_decode( $fb_token_response );
300
  $_REQUEST['next_url'] = isset( $test_fb_app_token_response->paging->next ) ? esc_url_raw( $test_fb_app_token_response->paging->next ) : '';
303
  $test_fb_app_token_response = json_decode( $fb_token_response );
304
  }
305
 
306
+ /* echo '<pre>';
307
+ print_r($test_fb_app_token_response);
308
+ echo '</pre>';*/
309
  // Make sure it's not ajaxing!
310
  if ( ! isset( $_GET['load_more_ajaxing'] ) ) {
311
  // ******************
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: slickremix, slickchris
3
  Tags: Facebook, Instagram, Twitter, YouTube, Feed
4
  Requires at least: 3.6.0
5
- Tested up to: 5.8.1
6
- Stable tag: 2.9.6.5
7
  License: GPLv2 or later
8
 
9
  Display a Custom Facebook feed, Instagram feed, Twitter feed, and YouTube feed on pages, posts or widgets.
@@ -72,6 +72,10 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
72
  * Log into WordPress dashboard then click **Plugins** > **Add new** > Then under the title "Install Plugins" click **Upload** > **choose the zip** > **Activate the plugin!**
73
 
74
  == Changelog ==
 
 
 
 
75
  = Version 2.9.6.5 Thursday, October 14th, 2021 =
76
  * NEW: [Twitter Feed](https://feedthemsocial.com/twitter-feed-demo/): Brand New Styles. Images from externally shared posts now appear and retweeted text also now appears along with images or videos if present.
77
  * PREMIUM NEW: [Twitter Feed Grid](https://feedthemsocial.com/twitter-feed-grid-demo/): The grid format now has all the new styles and additions as the regular feed.
@@ -163,7 +167,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
163
 
164
  = Version 2.8.3.3 Tuesday, April 28th, 2020 =
165
  * DISABLED: Pinterest Feed: Without notice or warning the Pinterest API has become unavailable. Once the API is available to us again we will make an update to correct the issue. For the time being we are going to disable the access token button.
166
- * NEW: System Info: Added Instgram Basic and Business token checks to aid in support.
167
 
168
  = Version 2.8.3.2 Wednesday, April 8th, 2020 =
169
  * FIXED: Instagram Feed: Profile info options not showing on the Settings page shortcode generator, follow button was not displaying and misspelling of Instagram name on legacy API error message.
@@ -197,7 +201,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
197
  * FIX: Instagram Feed: Multiple feeds problem.
198
 
199
  = Version 2.7.6.2 Thursday, October 31th, 2019 =
200
- * HAPPY HOLLOWEEN!
201
  * FIX: Facebook Options: Issue with Instagram Pages getting included in the return.
202
  * FIX: Twitter Feed: Now the Date has a title so it is accessible.
203
  * FIX: All Feeds: Now the share links are accessible.
@@ -278,7 +282,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
278
  * NEW: Facebook Options: Translate the text, View on Facebook.
279
  * FIX: Pinterest & Instagram Options: Some plugins stripping out the hashtag we used to pass the access token in the browser url. Now we use &access_token instead.
280
  * FIX: Instagram hashtag feed: The set image count was not responding.
281
- * FIX: YoutTube Options: Access token not being saved properly.
282
  * FIX: Misc style updates.
283
  * COMBINED STREAMS NEW: Version 1.1.8: More rigorous error check in place to make sure if one social network fails the rest of the feed does not go down. Also admin notices will appear for social networks that are not working and give you instructions on what to check for to fix the problem.
284
 
@@ -350,7 +354,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
350
 
351
  = Version 2.4.2 Wednesday, June 13th, 2018 =
352
  * FIX: Instagram Feed: User data was not getting cached probably cause API usage even if the feed was cached. Additional error check in place should also make sure cached feed is used if error found.
353
- * FIX: Instagram Options: Message under Access Token will now show if your Access Token has hit an API limit and what the total consuption is. 200 calls per hour is the general limit, Instagram says. This does not mean 200 page loads or visitors, this means how much information is called from Instagram to create your feed. That is why extended cache times are best now.
354
  * FIX: Facebook Options: Added an option to hide the Facebook error handler.
355
  * EDIT: Remove all mention of Facebook Group feeds and edited site documentation until further notice.
356
  * EDIT: Settings > Global Options - Cache Times: Remove all but 1 Day, 2 Days, 1 Week, 2 Weeks and Developer empty cache on reload select options.
@@ -365,7 +369,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
365
  * NOTE: Facebook Event Feed: Facebook now requires you use a page access token to view this feed type. The page access token must be for that facebook page for it to work. An APP ID will not work anymore.
366
  * FIX: Instagram Feed: The convert Instagram name option has been removed now that instagram as removed access for this option. Set your Access Token from the Instagram Options page to get your Instagram ID now. [Read More](https://www.slickremix.com/instagram-api-change-on-april-4th-2018/).
367
  * POPUP FIX: Instagram Hashtag or Location Feed: Because of the resent privacy change by Instagram we replaced the missing profile photo with an Instagram Icon and the persons Actual Name replaced with Handle name.
368
- * FIX: Instagram Feed: To create additional Instragram Feeds we have now added access_token= to the shortcode generator on the Settings page of our plugin.
369
  * FIX: Settings Page: View Extensions and Demo link not working properly.
370
  * FIX: Plugins Page: Settings link not working properly.
371
  * IMPROVED: Plugin License Page is now only takes 1 click to save ALL license keys and activate them. (Backwards Compatible)
@@ -376,7 +380,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
376
  * FIX: Facebook Feed: https:// missing on some outgoing facebook links.
377
  * FIX: Twitter Feed: Some images and videos not appearing for some tweets
378
  * FIX: Twitter Feed: Links not working properly for hashtags and @ links
379
- * FIX: Twitter Feed: Reply or retweeted tweets did not have a cirlce profile image instead they were still square
380
  * FIX: Twitter Feed: Extra closing div causing layout problems.
381
  * FYI: Facebook Event Feed: Default and or custom text if no current events available.
382
 
@@ -397,7 +401,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
397
  * NEW: Added Set Cache Time link in the admin menu along with the actual cache time that is currently set.
398
  * NEW: YouTube Feed: Hide the first thumbnail in the list. Useful if displaying videos on the page. omit_first_thumbnail=yes
399
  * FIX: YouTube Feed: Show videos in a row with title and description. Actual iframe is displayed and not thumbnails.
400
- * FIX: YouTube Feed: Foreach loop error if 51 or more was entered as the number of vids. YouTube API is 50 per page max and to loadmore you need the premium version.
401
  * FIX: YouTube Feed: API/Access Token Issue where page would not return the feed after a certain amount of time and you would have to refresh the page to get it to work again.
402
  * FIX: Facebook Options: Facebook, and Facebook Reviews Get Access Token: If you had more than 25 pages and clicked the loadmore button it would not return anymore results.
403
  * FIX: YouTube, Instagram and FB Feed: Fix image/js issue if you had 2 or more of these feeds on a page.
@@ -424,7 +428,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
424
  * MOVED: All the buttons used to connect to your social media account have been moved to the top of each of our options pages to make getting started a little quicker.
425
  * REMOVED: Settings Page: Vine Icon and Feed Shortcode Options.
426
  * PREMIUM NEW: YouTube Options: New Load More Button Styles & Options
427
- * PREMIUM NEW: YouTube Feed: Loadmore Button and Autoscoll shortcode options added.
428
  * PREMIUM NEW: YouTube Feed: Tons of new options and a new popup where you can show the video description and comments if you want.
429
  * PREMIUM NEW: Facebook Feed: Now you can display the photos/videos above the date, description etc. works in grid format and regular.
430
  * PREMIUM NEW: Facebook Feed: Hide your Profile Thumbnail.
@@ -481,10 +485,10 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
481
  = Version 2.2.5 Wednesday, June 28th, 2017 =
482
  * FIXED: Themes not pre installed with masonry.js getting error. This has been corrected now on the fts-global.js file to do a function check first.
483
  * FIXED: Twitter: Icons not aligning proper on some themes.
484
- * FIXED: CSS: Misc tweeks to override other theme CSS for our feeds. If you think we have to many !important rules in our CSS you have to consider that we are fighting with the themes CSS which in most cases overrides a plugins CSS. So if you see an !important rule and are having trouble overriding it make sure and target the body, html or an ID before the CSS class you are trying to override.
485
 
486
  = Version 2.2.4 Saturday, June 24th, 2017 =
487
- * NEW: Facebook: Now photo posts that contain more than one photo will be showm similar to facebook.
488
  * NEW: Settings->Global Options: 1 day cache is now set by default for new installs along with the 1 day ago time setting.
489
  * NEW: Settings->Global Options: Change the color of the share background and the social icons active state and hover state.
490
  * NEW: Facebook Options: Font size option for Description.
@@ -499,14 +503,14 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
499
  * FIXED: Facebook: Fix FB Translate XML file not loading properly because facebook removed it, so we are using a new XML list.
500
  * FIXED: Facebook Albums: Likes and comments not showing if 2 album_photo shortcodes on page with same id. Needed to create a type=album_photos create cache statement.
501
  * FIXED: Facebook Feeds: Profile name not going to proper profile for some users.
502
- * FIXED: Twitter Feeds: p tag getting added to reply, retweat and love links. Closed spaces so themes or other plugins won't try and add p tags anymore.
503
  * FIXED: Words option not working if using combined stream for multiple facebook feeds.
504
  * FIXED: Settings Page: Column width issue on settings page for Twitter.
505
  * FIXED: Fatal Error coming from Free plugin license page on some installs.
506
  * COMBINED FEEDS NEW: If you have the combined streams extension you will see share icons on the Facebook, Instagram, Twitter, Pinterest and Youtube posts.
507
 
508
  = Version 2.1.9 Thursday, April 27th, 2017 =
509
- * FIXED: Facebook: Type ablum_photos not caching proper if more than one of the same album on the page with different album_id's. The likes, comments, share options area was not displaying.
510
  * FIXED: Combined Facebook Feeds words option not working.
511
 
512
  = Version 2.1.7 - 2.1.8 Friday, March 24th, 2017 =
@@ -516,7 +520,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
516
  * NEW: Facebook Event feed now had Ticket Info link next to the Get Directions link on each post if you filled out the ticket info option on facebook when creating an event.
517
  * NEW: Adjusted author note at the bottom of the Settings page to include premium support ticket system link as well.
518
  * NEW: Plugin License page now shows the Extensions available for Feed Them Social if you don't already have one installed. And if you do it will show you upgrade license options should you ever need them.
519
- * NEW: Settings, Global Options: Additinoal Timezone options.
520
  * FIXED: Pinterest: Boards not displaying properly in text widgets.
521
  * FIXED: Facebook: Spacing and alignment issues for likeboxes, buttons etc.
522
  * FIXED: Facebook Combined: Post limit was stuck at 6.
@@ -533,7 +537,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
533
  * NEW: Facebook Options page: Load more button will appear if you are admin of more than 25 pages so you can choose the proper access token.
534
  * FIXED: Facebook: Video thumbnail not showing video if clicked.
535
  * FIXED: Instagram: Issue with image opening in new window instead of the post.
536
- * PREMIUM NEW: Twitter: Load more button and auto scroll load more option availble. Also new grid format options on settings page when creating a shortcode and Grid Style color options on the Twitter Options page.
537
  * PREMIUM NEW: Twitter Options, Facebook Options & Instagram Options pages: Load more button color and text color options.
538
  * PREMIUM NEW: Plugin License: Now the activate license button will not appear unless you add your license and click save all changes first.
539
  * FB REVIEWS NEW: Overall Rating option now available when creating a FB Reviews shortcode, plus many more style options on the Facebook Options page. We also now created a select option on the Facebook Options page to show or hide the Show More reviews link in posts. Additionally the itemprop="aggregateRating" meta information is being used on the overall rating bit. Google will track that and display the rating under your site information in search results.
@@ -558,8 +562,8 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
558
  * NEW: Twitter: Includes the proper thumbnail and name for the retweets and replies. New name/date style format.
559
  * NEW: Pinterest: Links are now clickable in the description for User Pins and Pins from a Board.
560
  * NEW: Instagram: Now you can show your profile photo, name, description and the count for your posts, followers and following. [View Demo](https://feedthemsocial.com/instagram-feed-demo/)
561
- * NEW: Instagram, Twitter and Pinterest: Truncated specfic calls into functions.
562
- * PREMIUM NEW: YouTube: Truncated specfic calls into functions.
563
  * NEW EXTENSION: [Feed Them Social Combined Streams](https://www.slickremix.com/downloads/feed-them-social-combined-streams/). With this extension you can combine your facebook feeds or you can combine Facebook, Instagram, Twitter, Pinterest or Youtube into one feed.
564
 
565
  = Version 2.0.9 Tuesday, October 4th, 2016 =
@@ -575,7 +579,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
575
  = Version 2.0.6 Tuesday, August 30th, 2016 =
576
  * VERY IMPORTANT: Pinterest: All users must now go to the Pinterest Options page and create and Access Token. It's very simple to generate the token. [https://www.slickremix.com/docs/how-to-create-a-pinterest-access-token/](https://www.slickremix.com/docs/how-to-create-a-pinterest-access-token/)
577
  * FIXED: Pinterest: The Boards feed was not working because the existing API was closed suddenly.
578
- * FIXED: Jetpack Photon filter had a ) in wrong possition causing a warning message that would not go away.
579
  * FIXED: Vine: Overlapping hover cover on some themes.
580
  * FIXED: Twitter: Now video posters will be the full with of video on the page.
581
  * FIXED: Instagram: now when you set image_stack_animation=no the masonry effect and scripts will not be used.
@@ -594,7 +598,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
594
  * NEW: Instagram: Photos in Super Instagram feed do not have white borders anymore.
595
 
596
  = Version 2.0.2 & 2.0.3 Wednesday, July 13th, 2016 =
597
- * FIXED: Facebook Event: Feed was not showing properly do to a misslabeled edge.
598
  * NEW: Facebook Event: Full size photo in feeds now and this should resolve most ? mark images.
599
  * NEW: Facebook: Notes post types had been added to the feed now.
600
  * NEW: Facebook: View on Facebook link now shows in popup if no message is found.
@@ -623,7 +627,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
623
 
624
  = Version 1.9.6 Tuesday, April 26th, 2016 =
625
  * NEW: Now you can set the post count for Facebook, Twitter, Instagram and Vine feeds. Limit 1-6. Vine feeds have no limit.
626
- * NEW: Facebook Options: Created an option to Change Post Limit so we can ommit posts that have no content from page or group feeds.
627
  * NEW: Facebook Options: Added option to remove the images.
628
  * NEW: Twitter Options: Added option to remove the images.
629
  * NEW: Twitter: Shortcode option to show retweets along with your tweets or just your tweets. Add show_retweets=yes to our shortcode or Regenerate your shortcode from the settings page to see this new select option.
@@ -631,7 +635,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
631
  * NEW: Settings Page shortcode generator will automatically add any missing px after values requiring it when proceeding to copy the shortcode.
632
  * ADDED: Facebook Events: Note on settings page before generating the shortcode letting users know about the 25 event limit.
633
  * FIXED: Facebook: Certain facebook videos links not returning properly.
634
- * FIXED: Facebook: Title and description dissapearing when premium is activated.
635
  * FIXED: Facebook: Links without http:// get the full site prepended. ie ww.mysite.com
636
  * FIXED: Facebook: Default Date and Time not showing unless the Settings page was saved.
637
  * TESTED: Facebook: App ID for API version 2.6
@@ -656,7 +660,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
656
 
657
  = Version 1.9.3 Wednesday, December 9th, 2015 =
658
  * FIXED: Shortcodes not working because of WP4.4 update. No space without underscores(_) allowed anymore.
659
- * FIXED: Facebook: Fixed error handeling return issue. Thanks to [alieneila](https://wordpress.org/support/topic/please-fix-error-output?replies=1) for bringing this to our attention.
660
  * NEW: Facebook Settings Page and Twitter Settings Page: Option to Hide Images in Posts.
661
  * NEW: Twitter: Add alt tag with name to images.
662
  * NOTE: All Premium users will be required to update as well to fix this issue. Very sorry for the inconvenience.
@@ -724,7 +728,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
724
  * FIXED: Decrease font size for share icon slightly and make sure the font-style is normal so other themes don't override it.
725
 
726
  = Version 1.8.5 Wednesday, July 8th, 2015 =
727
- * FIXED: Fatal error on install for users under php 5.3 due to new namespace name overiding our initial php version error check.
728
  * FIXED: Misc cleanup on files to speed things up.
729
  * PREMIUM USERS: The below new options can be found on the settings page when you generate your shortcode for the facebook feed you need.
730
  * NEW: Facebook Video Feed. Now you can add a feed of your Facebook page's uploaded videos. Only Works with Facebook Pages. Not user accounts or groups etc. See example here: [https://feedthemsocial.com/facebook-videos-demo/](hhttps://feedthemsocial.com/facebook-videos-demo/)
@@ -746,7 +750,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
746
  * NEW: Facebook Option: Hide the text that appears after your facebook name for instance... added a new video, or shared something or added a new album. Most of these things are apparent when viewing the post anyway.
747
  * NEW: System Info: Now we are gathering more of the info we need in order to speed up support requests.
748
  * FIXED: Removed Serialize from our caching process as it was not needed and was causing some people errors when logged out and trying to view any feeds.
749
- * FIXED: Removed uneeded ajax file from facebook feed and truncated some more scripts from feeds to speed up load time.
750
  * FIXED: Instagram Feed: js error with Classic gallery when using loadmore.
751
  * EDIT: Moved plugin license menu to our plugin's menu
752
 
@@ -834,7 +838,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
834
 
835
  = Version 1.6.8 Sunday, January 18th, 2015 =
836
  * FIXED: Twitter feed now uses your custom API token to make the connection where as before it was still using the default Tokens even if you had entered custom ones.
837
- * FIXED: Feeds from Cacheing if errors for Facebook, Twitter, Instagram.
838
  * FIXED: Trim words= for Facebook feed breaking themes if a url or br tag is the last element.
839
  * FIXED: Default App Tokens for randomizer fixed so no more error from like or comment posts in feed. With our default tokens you should not see those posts in the feed anymore either.
840
  * UPDATED: Facebook Styles.
@@ -925,7 +929,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
925
  * NEW: You can now add Shortcodes to Text Widgets in the FREE Version
926
  * FIXED: View on Facebook link works on post made from Twitter
927
  * IMPROVED: Faster loading time on all Feeds
928
- * NOTE/WARNING: Our custom facebook, twitter and instagram widgets will be removed in the next update because it's just as simple to generate the shortcode from our settings page and paste to a text widget and adjust the options. These 'NEW' options in this update are not available in our widgets. If you would like to use the latest features you will need to generate a new shortcode and paste that into a text widget. The nice thing is each option for the shortcode is cleary named so you can change the option very quickly.
929
 
930
  = Version 1.5.4 Wednesday, September 3rd, 2014 =
931
  * UPDATED: FTS framework to now work on non root installs. **note** Feed Them Premium and FTS Bar will also be getting this update
@@ -997,7 +1001,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
997
 
998
  = Version 1.3.8 Sunday, February 16th, 2014 =
999
  * Added: 20% off coupon option in the settings page for users who wanted to upgrade to the premium version. Limited Time only!
1000
- * Added: New Facbook icons for like, share and comments on all facebook feeds.
1001
  * Added: Facebook posts with only image show the image larger, not just small thumbnail anymore.
1002
  * Fixed: Powered by text is on by default now.
1003
 
@@ -1014,7 +1018,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
1014
  * NEW: Facebook Page Feed now had option to filter posts by everyone or just by the page owner.
1015
  * NEW: Caching system for twitter.
1016
  * NEW: Now you can easily adjust any of our feeds styles using the Custom CSS box on the settings page.
1017
- * NEW: Add Powered by option for all those who want to help promote Feed Them Social. Simple text with link will apear at the bottom of your feeds when this is checked on the settings page.
1018
  * Fixed, Premium Version: Instagram post count not spitting out correctly.
1019
  * Fixed, Premium Version: Facebook Event Feed widget has now been created.
1020
 
@@ -1024,7 +1028,7 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
1024
  = Version 1.3.4 Tuesday, February 11th, 2014 =
1025
  * NEW FEED: Facebook Event Feed. Now you can take your group or page Event ID and enter it on our settings page to create a FB event feed. Promote those events now!
1026
  * Fixed: Twitter function error with multiple feeds on a page.
1027
- * NEW: Facebook feeds now have a wordcount limit.
1028
 
1029
  = Version 1.3.3 Friday, January 10th, 2014 =
1030
  * Updated: UI and new icons for wordpress 3.8 update.
2
  Contributors: slickremix, slickchris
3
  Tags: Facebook, Instagram, Twitter, YouTube, Feed
4
  Requires at least: 3.6.0
5
+ Tested up to: 5.8.2
6
+ Stable tag: 2.9.7
7
  License: GPLv2 or later
8
 
9
  Display a Custom Facebook feed, Instagram feed, Twitter feed, and YouTube feed on pages, posts or widgets.
72
  * Log into WordPress dashboard then click **Plugins** > **Add new** > Then under the title "Install Plugins" click **Upload** > **choose the zip** > **Activate the plugin!**
73
 
74
  == Changelog ==
75
+ = Version 2.9.7 Tuesday, December 14th, 2021 =
76
+ * FIX: Facebook & Instagram Options: Problem getting access token if you were running the New Page Experience.
77
+ * NEW: Facebook & Instagram Options: Revised description text for users to make it more clear what permissions we are requesting.
78
+
79
  = Version 2.9.6.5 Thursday, October 14th, 2021 =
80
  * NEW: [Twitter Feed](https://feedthemsocial.com/twitter-feed-demo/): Brand New Styles. Images from externally shared posts now appear and retweeted text also now appears along with images or videos if present.
81
  * PREMIUM NEW: [Twitter Feed Grid](https://feedthemsocial.com/twitter-feed-grid-demo/): The grid format now has all the new styles and additions as the regular feed.
167
 
168
  = Version 2.8.3.3 Tuesday, April 28th, 2020 =
169
  * DISABLED: Pinterest Feed: Without notice or warning the Pinterest API has become unavailable. Once the API is available to us again we will make an update to correct the issue. For the time being we are going to disable the access token button.
170
+ * NEW: System Info: Added Instagram Basic and Business token checks to aid in support.
171
 
172
  = Version 2.8.3.2 Wednesday, April 8th, 2020 =
173
  * FIXED: Instagram Feed: Profile info options not showing on the Settings page shortcode generator, follow button was not displaying and misspelling of Instagram name on legacy API error message.
201
  * FIX: Instagram Feed: Multiple feeds problem.
202
 
203
  = Version 2.7.6.2 Thursday, October 31th, 2019 =
204
+ * HAPPY HALLOWEEN!
205
  * FIX: Facebook Options: Issue with Instagram Pages getting included in the return.
206
  * FIX: Twitter Feed: Now the Date has a title so it is accessible.
207
  * FIX: All Feeds: Now the share links are accessible.
282
  * NEW: Facebook Options: Translate the text, View on Facebook.
283
  * FIX: Pinterest & Instagram Options: Some plugins stripping out the hashtag we used to pass the access token in the browser url. Now we use &access_token instead.
284
  * FIX: Instagram hashtag feed: The set image count was not responding.
285
+ * FIX: YouTube Options: Access token not being saved properly.
286
  * FIX: Misc style updates.
287
  * COMBINED STREAMS NEW: Version 1.1.8: More rigorous error check in place to make sure if one social network fails the rest of the feed does not go down. Also admin notices will appear for social networks that are not working and give you instructions on what to check for to fix the problem.
288
 
354
 
355
  = Version 2.4.2 Wednesday, June 13th, 2018 =
356
  * FIX: Instagram Feed: User data was not getting cached probably cause API usage even if the feed was cached. Additional error check in place should also make sure cached feed is used if error found.
357
+ * FIX: Instagram Options: Message under Access Token will now show if your Access Token has hit an API limit and what the total consumption is. 200 calls per hour is the general limit, Instagram says. This does not mean 200 page loads or visitors, this means how much information is called from Instagram to create your feed. That is why extended cache times are best now.
358
  * FIX: Facebook Options: Added an option to hide the Facebook error handler.
359
  * EDIT: Remove all mention of Facebook Group feeds and edited site documentation until further notice.
360
  * EDIT: Settings > Global Options - Cache Times: Remove all but 1 Day, 2 Days, 1 Week, 2 Weeks and Developer empty cache on reload select options.
369
  * NOTE: Facebook Event Feed: Facebook now requires you use a page access token to view this feed type. The page access token must be for that facebook page for it to work. An APP ID will not work anymore.
370
  * FIX: Instagram Feed: The convert Instagram name option has been removed now that instagram as removed access for this option. Set your Access Token from the Instagram Options page to get your Instagram ID now. [Read More](https://www.slickremix.com/instagram-api-change-on-april-4th-2018/).
371
  * POPUP FIX: Instagram Hashtag or Location Feed: Because of the resent privacy change by Instagram we replaced the missing profile photo with an Instagram Icon and the persons Actual Name replaced with Handle name.
372
+ * FIX: Instagram Feed: To create additional Instagram Feeds we have now added access_token= to the shortcode generator on the Settings page of our plugin.
373
  * FIX: Settings Page: View Extensions and Demo link not working properly.
374
  * FIX: Plugins Page: Settings link not working properly.
375
  * IMPROVED: Plugin License Page is now only takes 1 click to save ALL license keys and activate them. (Backwards Compatible)
380
  * FIX: Facebook Feed: https:// missing on some outgoing facebook links.
381
  * FIX: Twitter Feed: Some images and videos not appearing for some tweets
382
  * FIX: Twitter Feed: Links not working properly for hashtags and @ links
383
+ * FIX: Twitter Feed: Reply or retweeted tweets did not have a circle profile image instead they were still square
384
  * FIX: Twitter Feed: Extra closing div causing layout problems.
385
  * FYI: Facebook Event Feed: Default and or custom text if no current events available.
386
 
401
  * NEW: Added Set Cache Time link in the admin menu along with the actual cache time that is currently set.
402
  * NEW: YouTube Feed: Hide the first thumbnail in the list. Useful if displaying videos on the page. omit_first_thumbnail=yes
403
  * FIX: YouTube Feed: Show videos in a row with title and description. Actual iframe is displayed and not thumbnails.
404
+ * FIX: YouTube Feed: Foreach loop error if 51 or more was entered as the number of videos. YouTube API is 50 per page max and to loadmore you need the premium version.
405
  * FIX: YouTube Feed: API/Access Token Issue where page would not return the feed after a certain amount of time and you would have to refresh the page to get it to work again.
406
  * FIX: Facebook Options: Facebook, and Facebook Reviews Get Access Token: If you had more than 25 pages and clicked the loadmore button it would not return anymore results.
407
  * FIX: YouTube, Instagram and FB Feed: Fix image/js issue if you had 2 or more of these feeds on a page.
428
  * MOVED: All the buttons used to connect to your social media account have been moved to the top of each of our options pages to make getting started a little quicker.
429
  * REMOVED: Settings Page: Vine Icon and Feed Shortcode Options.
430
  * PREMIUM NEW: YouTube Options: New Load More Button Styles & Options
431
+ * PREMIUM NEW: YouTube Feed: Loadmore Button and Autoscroll shortcode options added.
432
  * PREMIUM NEW: YouTube Feed: Tons of new options and a new popup where you can show the video description and comments if you want.
433
  * PREMIUM NEW: Facebook Feed: Now you can display the photos/videos above the date, description etc. works in grid format and regular.
434
  * PREMIUM NEW: Facebook Feed: Hide your Profile Thumbnail.
485
  = Version 2.2.5 Wednesday, June 28th, 2017 =
486
  * FIXED: Themes not pre installed with masonry.js getting error. This has been corrected now on the fts-global.js file to do a function check first.
487
  * FIXED: Twitter: Icons not aligning proper on some themes.
488
+ * FIXED: CSS: Misc tweaks to override other theme CSS for our feeds. If you think we have to many !important rules in our CSS you have to consider that we are fighting with the themes CSS which in most cases overrides a plugins CSS. So if you see an !important rule and are having trouble overriding it make sure and target the body, html or an ID before the CSS class you are trying to override.
489
 
490
  = Version 2.2.4 Saturday, June 24th, 2017 =
491
+ * NEW: Facebook: Now photo posts that contain more than one photo will be shown similar to facebook.
492
  * NEW: Settings->Global Options: 1 day cache is now set by default for new installs along with the 1 day ago time setting.
493
  * NEW: Settings->Global Options: Change the color of the share background and the social icons active state and hover state.
494
  * NEW: Facebook Options: Font size option for Description.
503
  * FIXED: Facebook: Fix FB Translate XML file not loading properly because facebook removed it, so we are using a new XML list.
504
  * FIXED: Facebook Albums: Likes and comments not showing if 2 album_photo shortcodes on page with same id. Needed to create a type=album_photos create cache statement.
505
  * FIXED: Facebook Feeds: Profile name not going to proper profile for some users.
506
+ * FIXED: Twitter Feeds: p tag getting added to reply, retweet and love links. Closed spaces so themes or other plugins won't try and add p tags anymore.
507
  * FIXED: Words option not working if using combined stream for multiple facebook feeds.
508
  * FIXED: Settings Page: Column width issue on settings page for Twitter.
509
  * FIXED: Fatal Error coming from Free plugin license page on some installs.
510
  * COMBINED FEEDS NEW: If you have the combined streams extension you will see share icons on the Facebook, Instagram, Twitter, Pinterest and Youtube posts.
511
 
512
  = Version 2.1.9 Thursday, April 27th, 2017 =
513
+ * FIXED: Facebook: Type album_photos not caching proper if more than one of the same album on the page with different album_id's. The likes, comments, share options area was not displaying.
514
  * FIXED: Combined Facebook Feeds words option not working.
515
 
516
  = Version 2.1.7 - 2.1.8 Friday, March 24th, 2017 =
520
  * NEW: Facebook Event feed now had Ticket Info link next to the Get Directions link on each post if you filled out the ticket info option on facebook when creating an event.
521
  * NEW: Adjusted author note at the bottom of the Settings page to include premium support ticket system link as well.
522
  * NEW: Plugin License page now shows the Extensions available for Feed Them Social if you don't already have one installed. And if you do it will show you upgrade license options should you ever need them.
523
+ * NEW: Settings, Global Options: Additional Timezone options.
524
  * FIXED: Pinterest: Boards not displaying properly in text widgets.
525
  * FIXED: Facebook: Spacing and alignment issues for likeboxes, buttons etc.
526
  * FIXED: Facebook Combined: Post limit was stuck at 6.
537
  * NEW: Facebook Options page: Load more button will appear if you are admin of more than 25 pages so you can choose the proper access token.
538
  * FIXED: Facebook: Video thumbnail not showing video if clicked.
539
  * FIXED: Instagram: Issue with image opening in new window instead of the post.
540
+ * PREMIUM NEW: Twitter: Load more button and auto scroll load more option available. Also new grid format options on settings page when creating a shortcode and Grid Style color options on the Twitter Options page.
541
  * PREMIUM NEW: Twitter Options, Facebook Options & Instagram Options pages: Load more button color and text color options.
542
  * PREMIUM NEW: Plugin License: Now the activate license button will not appear unless you add your license and click save all changes first.
543
  * FB REVIEWS NEW: Overall Rating option now available when creating a FB Reviews shortcode, plus many more style options on the Facebook Options page. We also now created a select option on the Facebook Options page to show or hide the Show More reviews link in posts. Additionally the itemprop="aggregateRating" meta information is being used on the overall rating bit. Google will track that and display the rating under your site information in search results.
562
  * NEW: Twitter: Includes the proper thumbnail and name for the retweets and replies. New name/date style format.
563
  * NEW: Pinterest: Links are now clickable in the description for User Pins and Pins from a Board.
564
  * NEW: Instagram: Now you can show your profile photo, name, description and the count for your posts, followers and following. [View Demo](https://feedthemsocial.com/instagram-feed-demo/)
565
+ * NEW: Instagram, Twitter and Pinterest: Truncated specific calls into functions.
566
+ * PREMIUM NEW: YouTube: Truncated specific calls into functions.
567
  * NEW EXTENSION: [Feed Them Social Combined Streams](https://www.slickremix.com/downloads/feed-them-social-combined-streams/). With this extension you can combine your facebook feeds or you can combine Facebook, Instagram, Twitter, Pinterest or Youtube into one feed.
568
 
569
  = Version 2.0.9 Tuesday, October 4th, 2016 =
579
  = Version 2.0.6 Tuesday, August 30th, 2016 =
580
  * VERY IMPORTANT: Pinterest: All users must now go to the Pinterest Options page and create and Access Token. It's very simple to generate the token. [https://www.slickremix.com/docs/how-to-create-a-pinterest-access-token/](https://www.slickremix.com/docs/how-to-create-a-pinterest-access-token/)
581
  * FIXED: Pinterest: The Boards feed was not working because the existing API was closed suddenly.
582
+ * FIXED: Jetpack Photon filter had a ) in wrong position causing a warning message that would not go away.
583
  * FIXED: Vine: Overlapping hover cover on some themes.
584
  * FIXED: Twitter: Now video posters will be the full with of video on the page.
585
  * FIXED: Instagram: now when you set image_stack_animation=no the masonry effect and scripts will not be used.
598
  * NEW: Instagram: Photos in Super Instagram feed do not have white borders anymore.
599
 
600
  = Version 2.0.2 & 2.0.3 Wednesday, July 13th, 2016 =
601
+ * FIXED: Facebook Event: Feed was not showing properly do to a mislabeled edge.
602
  * NEW: Facebook Event: Full size photo in feeds now and this should resolve most ? mark images.
603
  * NEW: Facebook: Notes post types had been added to the feed now.
604
  * NEW: Facebook: View on Facebook link now shows in popup if no message is found.
627
 
628
  = Version 1.9.6 Tuesday, April 26th, 2016 =
629
  * NEW: Now you can set the post count for Facebook, Twitter, Instagram and Vine feeds. Limit 1-6. Vine feeds have no limit.
630
+ * NEW: Facebook Options: Created an option to Change Post Limit so we can omit posts that have no content from page or group feeds.
631
  * NEW: Facebook Options: Added option to remove the images.
632
  * NEW: Twitter Options: Added option to remove the images.
633
  * NEW: Twitter: Shortcode option to show retweets along with your tweets or just your tweets. Add show_retweets=yes to our shortcode or Regenerate your shortcode from the settings page to see this new select option.
635
  * NEW: Settings Page shortcode generator will automatically add any missing px after values requiring it when proceeding to copy the shortcode.
636
  * ADDED: Facebook Events: Note on settings page before generating the shortcode letting users know about the 25 event limit.
637
  * FIXED: Facebook: Certain facebook videos links not returning properly.
638
+ * FIXED: Facebook: Title and description disappearing when premium is activated.
639
  * FIXED: Facebook: Links without http:// get the full site prepended. ie ww.mysite.com
640
  * FIXED: Facebook: Default Date and Time not showing unless the Settings page was saved.
641
  * TESTED: Facebook: App ID for API version 2.6
660
 
661
  = Version 1.9.3 Wednesday, December 9th, 2015 =
662
  * FIXED: Shortcodes not working because of WP4.4 update. No space without underscores(_) allowed anymore.
663
+ * FIXED: Facebook: Fixed error handling return issue. Thanks to [alieneila](https://wordpress.org/support/topic/please-fix-error-output?replies=1) for bringing this to our attention.
664
  * NEW: Facebook Settings Page and Twitter Settings Page: Option to Hide Images in Posts.
665
  * NEW: Twitter: Add alt tag with name to images.
666
  * NOTE: All Premium users will be required to update as well to fix this issue. Very sorry for the inconvenience.
728
  * FIXED: Decrease font size for share icon slightly and make sure the font-style is normal so other themes don't override it.
729
 
730
  = Version 1.8.5 Wednesday, July 8th, 2015 =
731
+ * FIXED: Fatal error on install for users under php 5.3 due to new namespace name overriding our initial php version error check.
732
  * FIXED: Misc cleanup on files to speed things up.
733
  * PREMIUM USERS: The below new options can be found on the settings page when you generate your shortcode for the facebook feed you need.
734
  * NEW: Facebook Video Feed. Now you can add a feed of your Facebook page's uploaded videos. Only Works with Facebook Pages. Not user accounts or groups etc. See example here: [https://feedthemsocial.com/facebook-videos-demo/](hhttps://feedthemsocial.com/facebook-videos-demo/)
750
  * NEW: Facebook Option: Hide the text that appears after your facebook name for instance... added a new video, or shared something or added a new album. Most of these things are apparent when viewing the post anyway.
751
  * NEW: System Info: Now we are gathering more of the info we need in order to speed up support requests.
752
  * FIXED: Removed Serialize from our caching process as it was not needed and was causing some people errors when logged out and trying to view any feeds.
753
+ * FIXED: Removed unneeded ajax file from facebook feed and truncated some more scripts from feeds to speed up load time.
754
  * FIXED: Instagram Feed: js error with Classic gallery when using loadmore.
755
  * EDIT: Moved plugin license menu to our plugin's menu
756
 
838
 
839
  = Version 1.6.8 Sunday, January 18th, 2015 =
840
  * FIXED: Twitter feed now uses your custom API token to make the connection where as before it was still using the default Tokens even if you had entered custom ones.
841
+ * FIXED: Feeds from Caching if errors for Facebook, Twitter, Instagram.
842
  * FIXED: Trim words= for Facebook feed breaking themes if a url or br tag is the last element.
843
  * FIXED: Default App Tokens for randomizer fixed so no more error from like or comment posts in feed. With our default tokens you should not see those posts in the feed anymore either.
844
  * UPDATED: Facebook Styles.
929
  * NEW: You can now add Shortcodes to Text Widgets in the FREE Version
930
  * FIXED: View on Facebook link works on post made from Twitter
931
  * IMPROVED: Faster loading time on all Feeds
932
+ * NOTE/WARNING: Our custom facebook, twitter and instagram widgets will be removed in the next update because it's just as simple to generate the shortcode from our settings page and paste to a text widget and adjust the options. These 'NEW' options in this update are not available in our widgets. If you would like to use the latest features you will need to generate a new shortcode and paste that into a text widget. The nice thing is each option for the shortcode is clearly named so you can change the option very quickly.
933
 
934
  = Version 1.5.4 Wednesday, September 3rd, 2014 =
935
  * UPDATED: FTS framework to now work on non root installs. **note** Feed Them Premium and FTS Bar will also be getting this update
1001
 
1002
  = Version 1.3.8 Sunday, February 16th, 2014 =
1003
  * Added: 20% off coupon option in the settings page for users who wanted to upgrade to the premium version. Limited Time only!
1004
+ * Added: New Facebook icons for like, share and comments on all facebook feeds.
1005
  * Added: Facebook posts with only image show the image larger, not just small thumbnail anymore.
1006
  * Fixed: Powered by text is on by default now.
1007
 
1018
  * NEW: Facebook Page Feed now had option to filter posts by everyone or just by the page owner.
1019
  * NEW: Caching system for twitter.
1020
  * NEW: Now you can easily adjust any of our feeds styles using the Custom CSS box on the settings page.
1021
+ * NEW: Add Powered by option for all those who want to help promote Feed Them Social. Simple text with link will appear at the bottom of your feeds when this is checked on the settings page.
1022
  * Fixed, Premium Version: Instagram post count not spitting out correctly.
1023
  * Fixed, Premium Version: Facebook Event Feed widget has now been created.
1024
 
1028
  = Version 1.3.4 Tuesday, February 11th, 2014 =
1029
  * NEW FEED: Facebook Event Feed. Now you can take your group or page Event ID and enter it on our settings page to create a FB event feed. Promote those events now!
1030
  * Fixed: Twitter function error with multiple feeds on a page.
1031
+ * NEW: Facebook feeds now have a word count limit.
1032
 
1033
  = Version 1.3.3 Friday, January 10th, 2014 =
1034
  * Updated: UI and new icons for wordpress 3.8 update.