Version Description
- Fix: Fixed an issue with a blank screen sometimes appearing when trying to connect a Facebook account
Download this release
Release Info
Developer | smashballoon |
Plugin | Custom Facebook Feed |
Version | 2.19.3 |
Comparing to | |
See all releases |
Code changes from version 2.19.2 to 2.19.3
- README.txt +4 -1
- admin/admin-functions.php +2 -2
- custom-facebook-feed.php +2 -2
README.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: Facebook, Facebook feed, Facebook posts, Facebook group, Facebook page
|
|
4 |
Requires at least: 3.0
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.8
|
7 |
-
Stable tag: 2.19.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -262,6 +262,9 @@ The most common reason for this is that an add-on or extension you have installe
|
|
262 |
9. It's super easy to display your Facebook feed in any page or post
|
263 |
|
264 |
== Changelog ==
|
|
|
|
|
|
|
265 |
= 2.19.2 =
|
266 |
* Tested with WordPress 5.8 update.
|
267 |
* Fix: PHP error "Uncaught Error: array_merge() does not accept unknown named parameters" when visiting the "About" page using PHP 8+.
|
4 |
Requires at least: 3.0
|
5 |
Requires PHP: 5.6
|
6 |
Tested up to: 5.8
|
7 |
+
Stable tag: 2.19.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
262 |
9. It's super easy to display your Facebook feed in any page or post
|
263 |
|
264 |
== Changelog ==
|
265 |
+
= 2.19.3 =
|
266 |
+
* Fix: Fixed an issue with a blank screen sometimes appearing when trying to connect a Facebook account
|
267 |
+
|
268 |
= 2.19.2 =
|
269 |
* Tested with WordPress 5.8 update.
|
270 |
* Fix: PHP error "Uncaught Error: array_merge() does not accept unknown named parameters" when visiting the "About" page using PHP 8+.
|
admin/admin-functions.php
CHANGED
@@ -3561,7 +3561,7 @@ function cff_settings_page() {
|
|
3561 |
</div>
|
3562 |
</div>
|
3563 |
|
3564 |
-
<a href="
|
3565 |
|
3566 |
|
3567 |
<?php
|
@@ -3682,7 +3682,7 @@ function cff_settings_page() {
|
|
3682 |
}
|
3683 |
echo '</div>';
|
3684 |
echo '<a href="JavaScript:void(0);" class="button button-primary cff-group-btn" id="cff-insert-token" disabled="disabled">Use token for this Group</a>';
|
3685 |
-
echo '<div id="cff_token_expiration_note" class="cff-error"><b>Important:</b> This token will expire in 60 days.<br /><a href="https://smashballoon.com/extending-a-group-access-token-so-it-never-expires/" target="_blank">Extend token so it never expires</a></div>';
|
3686 |
echo '</div>';
|
3687 |
|
3688 |
echo '<div id="cff-group-installation">';
|
3561 |
</div>
|
3562 |
</div>
|
3563 |
|
3564 |
+
<a href="JavaScript:void(0);" class="cff_admin_btn" id="cff_fb_login"><i class="fa fa-facebook-square"></i> <?php _e( 'Connect a Facebook account', 'custom-facebook-feed' ); ?></a>
|
3565 |
|
3566 |
|
3567 |
<?php
|
3682 |
}
|
3683 |
echo '</div>';
|
3684 |
echo '<a href="JavaScript:void(0);" class="button button-primary cff-group-btn" id="cff-insert-token" disabled="disabled">Use token for this Group</a>';
|
3685 |
+
if( $cff_token_expiration == "60 days" ) echo '<div id="cff_token_expiration_note" class="cff-error"><b>Important:</b> This token will expire in 60 days.<br /><a href="https://smashballoon.com/extending-a-group-access-token-so-it-never-expires/" target="_blank">Extend token so it never expires</a></div>';
|
3686 |
echo '</div>';
|
3687 |
|
3688 |
echo '<div id="cff-group-installation">';
|
custom-facebook-feed.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Smash Balloon Custom Facebook Feed
|
4 |
Plugin URI: https://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add completely customizable Facebook feeds to your WordPress site
|
6 |
-
Version: 2.19.
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
@@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
25 |
*/
|
26 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
27 |
|
28 |
-
define('CFFVER', '2.19.
|
29 |
|
30 |
// Db version.
|
31 |
if ( ! defined( 'CFF_DBVERSION' ) ) {
|
3 |
Plugin Name: Smash Balloon Custom Facebook Feed
|
4 |
Plugin URI: https://smashballoon.com/custom-facebook-feed
|
5 |
Description: Add completely customizable Facebook feeds to your WordPress site
|
6 |
+
Version: 2.19.3
|
7 |
Author: Smash Balloon
|
8 |
Author URI: http://smashballoon.com/
|
9 |
License: GPLv2 or later
|
25 |
*/
|
26 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
27 |
|
28 |
+
define('CFFVER', '2.19.3');
|
29 |
|
30 |
// Db version.
|
31 |
if ( ! defined( 'CFF_DBVERSION' ) ) {
|