Custom Facebook Feed - Version 2.6.4

Version Description

  • Important: If you are displaying posts from a Facebook page that you are an admin of then it is now highly recommended that you retrieve your own Access Token for that page to avoid any API rate limit errors. Simply follow these step-by-step instructions to obtain one.
Download this release

Release Info

Developer smashballoon
Plugin Icon 128x128 Custom Facebook Feed
Version 2.6.4
Comparing to
See all releases

Code changes from version 2.6.3 to 2.6.4

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: smashballoon
3
  Tags: Facebook, Facebook feed, Facebook posts, Facebook wall, Facebook page
4
  Requires at least: 3.0
5
  Tested up to: 4.9
6
- Stable tag: 2.6.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -265,6 +265,9 @@ You no longer need your own Access Token to use the Custom Facebook Feed Plugin,
265
 
266
  == Changelog ==
267
 
 
 
 
268
  = 2.6.3 =
269
  * Fix: Fixed an issue where API errors were being cached
270
 
3
  Tags: Facebook, Facebook feed, Facebook posts, Facebook wall, Facebook page
4
  Requires at least: 3.0
5
  Tested up to: 4.9
6
+ Stable tag: 2.6.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
265
 
266
  == Changelog ==
267
 
268
+ = 2.6.4 =
269
+ * **Important:** If you are displaying posts from a Facebook page that **you are an admin of** then it is now highly recommended that you retrieve your own Access Token for that page to avoid any API rate limit errors. Simply follow these [step-by-step](https://smashballoon.com/custom-facebook-feed/page-token/) instructions to obtain one.
270
+
271
  = 2.6.3 =
272
  * Fix: Fixed an issue where API errors were being cached
273
 
custom-facebook-feed-admin.php CHANGED
@@ -167,10 +167,10 @@ function cff_settings_page() {
167
  </tr> -->
168
 
169
  <tr valign="top">
170
- <th scope="row" style="padding-bottom: 10px;"><?php _e('Enter my own Access Token', 'custom-facebook-feed'); ?><br /><i style="font-weight: normal; font-size: 12px;"><?php _e('Not Recommended', 'custom-facebook-feed'); ?></i></th>
171
  <td>
172
  <input name="cff_show_access_token" type="checkbox" id="cff_show_access_token" <?php if($show_access_token_val == true) echo "checked"; ?> />&nbsp;<a class="cff-tooltip-link" href="JavaScript:void(0);"><?php _e("What is this?", 'custom-facebook-feed'); ?></a>
173
- <p class="cff-tooltip cff-more-info"><?php _e("Due to some sudden Facebook changes it is not currently possible to use a token from a new Facebook App to display your posts. You can simply leave this setting blank and the plugin will use a built-in token instead. If you have an existing Facebook App and you'd like to use your own Access Token then you can follow these <a href='https://smashballoon.com/custom-facebook-feed/access-token/' target='_blank'>step-by-step instructions</a> to obtain one.", 'custom-facebook-feed'); ?>.</p>
174
  </td>
175
  </tr>
176
 
167
  </tr> -->
168
 
169
  <tr valign="top">
170
+ <th scope="row" style="padding-bottom: 10px;"><?php _e('Enter my own Access Token', 'custom-facebook-feed'); ?><br /><i style="font-weight: normal; font-size: 12px; color: red;"><?php _e('Highly Recommended', 'custom-facebook-feed'); ?></i></th>
171
  <td>
172
  <input name="cff_show_access_token" type="checkbox" id="cff_show_access_token" <?php if($show_access_token_val == true) echo "checked"; ?> />&nbsp;<a class="cff-tooltip-link" href="JavaScript:void(0);"><?php _e("What is this?", 'custom-facebook-feed'); ?></a>
173
+ <p class="cff-tooltip cff-more-info"><?php _e("If you are displaying posts from a Facebook page that <b><u>you are an admin of</u></b> then it is highly recommended that you retrieve your own Access Token for that page to avoid any API rate limit errors. Simply follow these <a href='https://smashballoon.com/custom-facebook-feed/page-token/' target='_blank'>step-by-step instructions</a> to obtain one.", 'custom-facebook-feed'); ?></p>
174
  </td>
175
  </tr>
176
 
custom-facebook-feed.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Custom Facebook Feed
4
  Plugin URI: http://smashballoon.com/custom-facebook-feed
5
  Description: Add completely customizable Facebook feeds to your WordPress site
6
- Version: 2.6.3
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later
@@ -24,7 +24,7 @@ along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
 
27
- define('CFFVER', '2.6.3');
28
 
29
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
30
  //Include admin
3
  Plugin Name: Custom Facebook Feed
4
  Plugin URI: http://smashballoon.com/custom-facebook-feed
5
  Description: Add completely customizable Facebook feeds to your WordPress site
6
+ Version: 2.6.4
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
 
27
+ define('CFFVER', '2.6.4');
28
 
29
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
30
  //Include admin