Redux Framework - Version 4.1.23

Version Description

= * Fixed: Massive speed improvement to the library. * Fixed: Pro template count error if previously activated and Redux Pro not enabled. * Release date: Oct 24, 2020

Download this release

Release Info

Developer dovyp
Plugin Icon 128x128 Redux Framework
Version 4.1.23
Comparing to
See all releases

Code changes from version 4.1.22 to 4.1.23

CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
  # Redux Changelog
2
 
 
 
 
 
 
3
  ## 4.1.22
4
  * Fixed: Menu locations WordPress data object not providing name.
5
  * Added: Undefined if menu location is not assigned to a menu.
1
  # Redux Changelog
2
 
3
+ ## 4.1.23
4
+ * Fixed: Massive speed improvement to the library.
5
+ * Fixed: Pro template count error if previously activated and Redux Pro not enabled.
6
+ * Release date: Oct 24, 2020
7
+
8
  ## 4.1.22
9
  * Fixed: Menu locations WordPress data object not providing name.
10
  * Added: Undefined if menu location is not assigned to a menu.
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, gutenberg blocks, editor, block, page builder, block ed
5
  Requires at least: 4.0
6
  Requires PHP: 5.3
7
  Tested up to: 5.5
8
- Stable tag: 4.1.22
9
  License: GPL-2.0+
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.txt
11
 
@@ -154,6 +154,11 @@ If you want, you can use the [Gutenberg](https://wordpress.org/plugins/gutenberg
154
 
155
  == Changelog ==
156
 
 
 
 
 
 
157
  = 4.1.22 =
158
  * Fixed: Menu locations WordPress data object not providing name.
159
  * Added: Undefined if menu location is not assigned to a menu.
5
  Requires at least: 4.0
6
  Requires PHP: 5.3
7
  Tested up to: 5.5
8
+ Stable tag: 4.1.23
9
  License: GPL-2.0+
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.txt
11
 
154
 
155
  == Changelog ==
156
 
157
+ == 4.1.23 ==
158
+ * Fixed: Massive speed improvement to the library.
159
+ * Fixed: Pro template count error if previously activated and Redux Pro not enabled.
160
+ * Release date: Oct 24, 2020
161
+
162
  = 4.1.22 =
163
  * Fixed: Menu locations WordPress data object not providing name.
164
  * Added: Undefined if menu location is not assigned to a menu.
redux-core/framework.php CHANGED
@@ -23,7 +23,7 @@ defined( 'ABSPATH' ) || exit;
23
 
24
  require_once dirname( __FILE__ ) . '/class-redux-core.php';
25
 
26
- Redux_Core::$version = '4.1.22';
27
  Redux_Core::$redux_path = dirname( __FILE__ );
28
  Redux_Core::instance();
29
 
23
 
24
  require_once dirname( __FILE__ ) . '/class-redux-core.php';
25
 
26
+ Redux_Core::$version = '4.1.23';
27
  Redux_Core::$redux_path = dirname( __FILE__ );
28
  Redux_Core::instance();
29
 
redux-framework.php CHANGED
@@ -10,7 +10,7 @@
10
  * Description: Build better sites in WordPress fast
11
  * Author: Redux.io + Dovy Paukstys
12
  * Author URI: http://redux.io
13
- * Version: 4.1.22
14
  * Text Domain: redux-framework
15
  * License: GPLv3 or later
16
  * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
10
  * Description: Build better sites in WordPress fast
11
  * Author: Redux.io + Dovy Paukstys
12
  * Author URI: http://redux.io
13
+ * Version: 4.1.23
14
  * Text Domain: redux-framework
15
  * License: GPLv3 or later
16
  * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
redux-templates/classes/class-api.php CHANGED
@@ -347,7 +347,7 @@ class Api {
347
  $data = json_decode( ReduxTemplates\Init::get_local_file_contents( $test_path ), true );
348
  } else {
349
  $parameters['no_cache'] = 1;
350
- $data = $this->api_cache_fetch( $parameters, $config, 'library.json' );
351
  }
352
 
353
  if ( isset( $data['plugins'] ) ) {
347
  $data = json_decode( ReduxTemplates\Init::get_local_file_contents( $test_path ), true );
348
  } else {
349
  $parameters['no_cache'] = 1;
350
+ $data = $this->api_cache_fetch( $parameters, $config, 'library/' );
351
  }
352
 
353
  if ( isset( $data['plugins'] ) ) {
redux-templates/classes/class-init.php CHANGED
@@ -138,15 +138,10 @@ class Init {
138
  'supported_plugins' => array(), // Load the supported plugins.
139
  'tos' => \Redux_Connection_Banner::tos_blurb( 'import_wizard' ),
140
  );
141
-
142
  if ( ! $global_vars['mokama'] ) {
143
  // phpcs:disable Squiz.PHP.CommentedOutCode
144
  // delete_user_meta( get_current_user_id(), '_redux_templates_counts'); // To test left.
145
- if ( ! \Redux_Functions_Ex::activated() ) {
146
- $global_vars['left'] = ReduxTemplates\Init::left( get_current_user_id() );
147
- } else {
148
- $global_vars['left'] = 999;
149
- }
150
 
151
  // phpcs:ignore
152
  // delete_user_meta( get_current_user_id(), '_redux_welcome_guide' ); // For testing.
138
  'supported_plugins' => array(), // Load the supported plugins.
139
  'tos' => \Redux_Connection_Banner::tos_blurb( 'import_wizard' ),
140
  );
 
141
  if ( ! $global_vars['mokama'] ) {
142
  // phpcs:disable Squiz.PHP.CommentedOutCode
143
  // delete_user_meta( get_current_user_id(), '_redux_templates_counts'); // To test left.
144
+ $global_vars['left'] = ReduxTemplates\Init::left( get_current_user_id() );
 
 
 
 
145
 
146
  // phpcs:ignore
147
  // delete_user_meta( get_current_user_id(), '_redux_welcome_guide' ); // For testing.