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

Version Description

Download this release

Release Info

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

Code changes from version 2.6.3.1 to 2.6.4

feed-them.php CHANGED
@@ -7,18 +7,18 @@
7
  * Plugin Name: Feed Them Social (Facebook, Instagram, Twitter, etc)
8
  * Plugin URI: https://feedthemsocial.com/
9
  * Description: Customize feeds for Facebook Pages, Album Photos, Videos & Covers, Instagram, Twitter, Pinterest & YouTube on pages, posts or widgets.
10
- * Version: 2.6.3.1
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.0.3
17
- * Stable tag: 2.6.3.1
18
  * License: GPLv2 or later
19
  * License URI: https://www.gnu.org/licenses/gpl-3.0.html
20
  *
21
- * @version 2.6.3.1
22
  * @package FeedThemSocial/Core
23
  * @copyright Copyright (c) 2012-2019 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.6.3.1' );
35
 
36
  define( 'FEED_THEM_SOCIAL_NOTICE_STATUS', get_option( 'rating_fts_slick_notice', false ) );
37
 
7
  * Plugin Name: Feed Them Social (Facebook, Instagram, Twitter, etc)
8
  * Plugin URI: https://feedthemsocial.com/
9
  * Description: Customize feeds for Facebook Pages, Album Photos, Videos & Covers, Instagram, Twitter, Pinterest & YouTube on pages, posts or widgets.
10
+ * Version: 2.6.4
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.0.3
17
+ * Stable tag: 2.6.4
18
  * License: GPLv2 or later
19
  * License URI: https://www.gnu.org/licenses/gpl-3.0.html
20
  *
21
+ * @version 2.6.4
22
  * @package FeedThemSocial/Core
23
  * @copyright Copyright (c) 2012-2019 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.6.4' );
35
 
36
  define( 'FEED_THEM_SOCIAL_NOTICE_STATUS', get_option( 'rating_fts_slick_notice', false ) );
37
 
feeds/instagram/class-fts-instagram-feed.php CHANGED
@@ -337,11 +337,11 @@ class FTS_Instagram_Feed extends feed_them_social_functions {
337
  ob_start();
338
 
339
  // New method since Instagram API changes as of April 4th, 2018.
340
- if ( '' === $access_token ) {
341
  $fts_instagram_access_token_final = $fts_instagram_access_token;
342
- } else {
343
- $fts_instagram_access_token_final = $access_token;
344
- }
345
 
346
  if(isset($_REQUEST['next_url'])){
347
  $_REQUEST['next_url'] = str_replace( 'access_token=XXX', 'access_token='.get_option('fts_instagram_custom_api_token'), $_REQUEST['next_url'] );
337
  ob_start();
338
 
339
  // New method since Instagram API changes as of April 4th, 2018.
340
+ // if ( '' === $access_token ) {
341
  $fts_instagram_access_token_final = $fts_instagram_access_token;
342
+ // } else {
343
+ // $fts_instagram_access_token_final = $access_token;
344
+ // }
345
 
346
  if(isset($_REQUEST['next_url'])){
347
  $_REQUEST['next_url'] = str_replace( 'access_token=XXX', 'access_token='.get_option('fts_instagram_custom_api_token'), $_REQUEST['next_url'] );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: slickremix
3
  Tags: Facebook, Instagram, Twitter, YouTube, Feed
4
  Requires at least: 3.6.0
5
  Tested up to: 5.0.3
6
- Stable tag: 2.6.3.1
7
  License: GPLv2 or later
8
 
9
  Custom feeds for Facebook Pages, Album Photos, Videos & Covers, Instagram, Twitter, Pinterest & YouTube on pages, posts or widgets.
@@ -75,7 +75,10 @@ Feed Them Social was Developed By SlickRemix --> [https://www.slickremix.com/](h
75
  * Log into WordPress dashboard then click **Plugins** > **Add new** > Then under the title "Install Plugins" click **Upload** > **choose the zip** > **Activate the plugin!**
76
 
77
  == Changelog ==
78
- = Version 2.6.3 Wednesday, February 5th, 2018 =
 
 
 
79
  * FIX: All Facebook & Instagram Feeds: Remove the access_token= option in the shortcode. Unfortunately this is a security risk to your access token if our plugin is not active. This means if you had multiple feeds using different access tokens those feeds will not work anymore. We are working on creating a custom post type for the feeds so you will be able to do this but for now we need to remove the option. Very sorry for the any inconveniences this may cause you, but rest assured we will be back with an even easier method using the custom post type.
80
 
81
  = Version 2.6.2 Saturday, December 15th, 2018 =
3
  Tags: Facebook, Instagram, Twitter, YouTube, Feed
4
  Requires at least: 3.6.0
5
  Tested up to: 5.0.3
6
+ Stable tag: 2.6.4
7
  License: GPLv2 or later
8
 
9
  Custom feeds for Facebook Pages, Album Photos, Videos & Covers, Instagram, Twitter, Pinterest & YouTube on pages, posts or widgets.
75
  * Log into WordPress dashboard then click **Plugins** > **Add new** > Then under the title "Install Plugins" click **Upload** > **choose the zip** > **Activate the plugin!**
76
 
77
  == Changelog ==
78
+ = Version 2.6.4 Thursday, February 7th, 2018 =
79
+ * FIX: Instagram Feed: Feed not displaying correctly.
80
+
81
+ = Version 2.6.3.1 Wednesday, February 6th, 2018 =
82
  * FIX: All Facebook & Instagram Feeds: Remove the access_token= option in the shortcode. Unfortunately this is a security risk to your access token if our plugin is not active. This means if you had multiple feeds using different access tokens those feeds will not work anymore. We are working on creating a custom post type for the feeds so you will be able to do this but for now we need to remove the option. Very sorry for the any inconveniences this may cause you, but rest assured we will be back with an even easier method using the custom post type.
83
 
84
  = Version 2.6.2 Saturday, December 15th, 2018 =