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

Version Description

Download this release

Release Info

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

Code changes from version 2.8.3.2 to 2.8.3.3

admin/class-fts-pinterest-options-page.php CHANGED
@@ -37,7 +37,14 @@ class FTS_Pinterest_Options_Page {
37
  $fts_pinterest_show_follow_btn_where = get_option( 'pinterest_show_follow_btn_where' );
38
  $access_token = isset( $_GET['access_token'] ) ? sanitize_text_field( $_GET['access_token'] ) : get_option( 'fts_pinterest_custom_api_token' );
39
  ?>
40
- <div class="feed-them-social-admin-wrap">
 
 
 
 
 
 
 
41
  <h1>
42
  <?php echo esc_html( 'Pinterest Feed Options', 'feed-them-social' ); ?>
43
  </h1>
@@ -56,11 +63,12 @@ class FTS_Pinterest_Options_Page {
56
 
57
  <?php settings_fields( 'fts-pinterest-feed-style-options' ); ?>
58
 
59
- <div class="feed-them-social-admin-input-wrap" style="padding-top:0">
60
  <div class="fts-title-description-settings-page">
61
  <h3>
62
  <?php echo esc_html( 'Pinterest Access Token', 'feed-them-social' ); ?>
63
  </h3>
 
64
  <p><?php echo esc_html( 'This is required to make the feed work. Click the button below and it will connect to your Pinterest account to get an access token, and it will return it in the input below. Then click the save button and you will now be able to generate your Pinterest feed from the Settings page of our plugin.', 'feed-them-social' ); ?>
65
  </p>
66
  <p>
37
  $fts_pinterest_show_follow_btn_where = get_option( 'pinterest_show_follow_btn_where' );
38
  $access_token = isset( $_GET['access_token'] ) ? sanitize_text_field( $_GET['access_token'] ) : get_option( 'fts_pinterest_custom_api_token' );
39
  ?>
40
+ <div class="fts-failed-api-token" style="margin-bottom: 20px;">
41
+ <?php
42
+ echo esc_html( '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. 4-20-2020', 'feed-them-social' );
43
+ ?>
44
+ </div>
45
+
46
+ <div class="feed-them-social-admin-wrap">
47
+
48
  <h1>
49
  <?php echo esc_html( 'Pinterest Feed Options', 'feed-them-social' ); ?>
50
  </h1>
63
 
64
  <?php settings_fields( 'fts-pinterest-feed-style-options' ); ?>
65
 
66
+ <div class="feed-them-social-admin-input-wrap" style="padding-top:0; display: noneee">
67
  <div class="fts-title-description-settings-page">
68
  <h3>
69
  <?php echo esc_html( 'Pinterest Access Token', 'feed-them-social' ); ?>
70
  </h3>
71
+
72
  <p><?php echo esc_html( 'This is required to make the feed work. Click the button below and it will connect to your Pinterest account to get an access token, and it will return it in the input below. Then click the save button and you will now be able to generate your Pinterest feed from the Settings page of our plugin.', 'feed-them-social' ); ?>
73
  </p>
74
  <p>
admin/class-fts-system-info-page.php CHANGED
@@ -132,7 +132,8 @@ Cache time: <?php echo esc_html( $this->fts_cachetime_amount( $fts_cachetime ) )
132
  $twitter_options2 = get_option( 'fts_twitter_custom_consumer_secret' ) ? 'Yes' : 'No';
133
  $twitter_options3 = get_option( 'fts_twitter_custom_access_token' ) ? 'Yes' : 'No';
134
  $twitter_options4 = get_option( 'fts_twitter_custom_access_token_secret' ) ? 'Yes' : 'No';
135
- $instagram_options = get_option( 'fts_instagram_custom_api_token' ) ? 'Yes' : 'No';
 
136
  $pinterest_token = get_option( 'fts_pinterest_custom_api_token' ) ? 'Yes' : 'No';
137
 
138
  $fts_date_time_format = get_option( 'fts-date-and-time-format' ) ? get_option( 'fts-date-and-time-format' ) : 'No';
@@ -161,7 +162,8 @@ Twitter Secret: <?php echo esc_html( $twitter_options2 ) . "\n"; ?>
161
  Twitter Token: <?php echo esc_html( $twitter_options3 ) . "\n"; ?>
162
  Twitter Token Secret: <?php echo esc_html( $twitter_options4 ) . "\n"; ?>
163
  Pinterest Token: <?php echo esc_html( $pinterest_token ) . "\n"; ?>
164
- Instagram: <?php echo esc_html( $instagram_options ) . "\n";
 
165
  $youtube_options = get_option( 'youtube_custom_api_token' ) || get_option( 'youtube_custom_access_token' ) && get_option( 'youtube_custom_refresh_token' ) && get_option( 'youtube_custom_token_exp_time' ) ? 'Yes' : 'No';
166
  $fts_fix_loadmore = get_option( 'fts_fix_loadmore' ) ? get_option( 'fts_fix_loadmore' ) : 'No';
167
  $feed_them_social_premium_license_key = get_option( 'feed_them_social_premium_license_key' );
132
  $twitter_options2 = get_option( 'fts_twitter_custom_consumer_secret' ) ? 'Yes' : 'No';
133
  $twitter_options3 = get_option( 'fts_twitter_custom_access_token' ) ? 'Yes' : 'No';
134
  $twitter_options4 = get_option( 'fts_twitter_custom_access_token_secret' ) ? 'Yes' : 'No';
135
+ $instagram_basic_token = get_option( 'fts_instagram_custom_api_token' ) ? 'Yes' : 'No';
136
+ $instagram_business_token = get_option( 'fts_instagram_custom_api_token' ) ? 'Yes' : 'No';
137
  $pinterest_token = get_option( 'fts_pinterest_custom_api_token' ) ? 'Yes' : 'No';
138
 
139
  $fts_date_time_format = get_option( 'fts-date-and-time-format' ) ? get_option( 'fts-date-and-time-format' ) : 'No';
162
  Twitter Token: <?php echo esc_html( $twitter_options3 ) . "\n"; ?>
163
  Twitter Token Secret: <?php echo esc_html( $twitter_options4 ) . "\n"; ?>
164
  Pinterest Token: <?php echo esc_html( $pinterest_token ) . "\n"; ?>
165
+ Instagram Basic Token: <?php echo esc_html( $instagram_basic_token ) . "\n"; ?>
166
+ Instagram Business Token: <?php echo esc_html( $instagram_business_token ) . "\n";
167
  $youtube_options = get_option( 'youtube_custom_api_token' ) || get_option( 'youtube_custom_access_token' ) && get_option( 'youtube_custom_refresh_token' ) && get_option( 'youtube_custom_token_exp_time' ) ? 'Yes' : 'No';
168
  $fts_fix_loadmore = get_option( 'fts_fix_loadmore' ) ? get_option( 'fts_fix_loadmore' ) : 'No';
169
  $feed_them_social_premium_license_key = get_option( 'feed_them_social_premium_license_key' );
feed-them.php CHANGED
@@ -7,18 +7,18 @@
7
  * Plugin Name: Feed Them Social - for Twitter feed, Youtube, Pinterest and more
8
  * Plugin URI: https://feedthemsocial.com/
9
  * Description: Display a Custom Facebook feed, Instagram feed, Twitter feed, Pinterest feed & YouTube feed on pages, posts or widgets.
10
- * Version: 2.8.3.2
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.4.0
17
- * Stable tag: 2.8.3.2
18
  * License: GPLv2 or later
19
  * License URI: https://www.gnu.org/licenses/gpl-3.0.html
20
  *
21
- * @version 2.8.3.2
22
  * @package FeedThemSocial/Core
23
  * @copyright Copyright (c) 2012-2020 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.8.3.2' );
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, Pinterest and more
8
  * Plugin URI: https://feedthemsocial.com/
9
  * Description: Display a Custom Facebook feed, Instagram feed, Twitter feed, Pinterest feed & YouTube feed on pages, posts or widgets.
10
+ * Version: 2.8.3.3
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.4.0
17
+ * Stable tag: 2.8.3.3
18
  * License: GPLv2 or later
19
  * License URI: https://www.gnu.org/licenses/gpl-3.0.html
20
  *
21
+ * @version 2.8.3.3
22
  * @package FeedThemSocial/Core
23
  * @copyright Copyright (c) 2012-2020 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.8.3.3' );
35
 
36
  define( 'FEED_THEM_SOCIAL_NOTICE_STATUS', get_option( 'rating_fts_slick_notice', false ) );
37
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: slickremix, slickchris
3
  Tags: Facebook, Instagram, Twitter, YouTube, Feed
4
  Requires at least: 3.6.0
5
  Tested up to: 5.4.0
6
- Stable tag: 2.8.3.2
7
  License: GPLv2 or later
8
 
9
  Display a Custom Facebook feed, Instagram feed, Twitter feed, Pinterest feed & YouTube feed on pages, posts or widgets.
@@ -75,6 +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.8.3.2 Wednesday, April 8th, 2020 =
79
  * 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.
80
 
3
  Tags: Facebook, Instagram, Twitter, YouTube, Feed
4
  Requires at least: 3.6.0
5
  Tested up to: 5.4.0
6
+ Stable tag: 2.8.3.3
7
  License: GPLv2 or later
8
 
9
  Display a Custom Facebook feed, Instagram feed, Twitter feed, Pinterest feed & YouTube feed 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.8.3.3 Monday, April 20th, 2020 =
79
+ * 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.
80
+ * NEW: System Info: Added Instgram Basic and Business token checks to aid in support.
81
+
82
  = Version 2.8.3.2 Wednesday, April 8th, 2020 =
83
  * 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.
84