Version Description
- Fixed: Prevent plugin framework not loaded
Download this release
Release Info
Developer | yithemes |
Plugin | YITH Essential Kit for WooCommerce #1 |
Version | 1.3.7 |
Comparing to | |
See all releases |
Code changes from version 1.3.6 to 1.3.7
- README.txt +6 -2
- init.php +1 -1
- yith-jetpack.php +5 -2
README.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: yithemes
|
|
4 |
Tags: woocommerce,yith woocommerce colors and labels variations,yith woocommerce zoom magnifier,yith woocommerce wishlist,yith woocommerce ajax product filter,yith woocommerce ajax search,yith woocommerce catalog mode,yith woocommerce advanced reviews, yith woocommerce badges management,yith woocommerce cart messages,yith woocommerce review reminder,yith woocommerce quick view,yith woocommerce mailchimp,yith woocommerce stripe,yith woocommerce request a quote,yith woocommerce tab manager,yith woocommerce multi vendor
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -155,6 +155,10 @@ YITH Essential Kit for WooCommerce #1 will add a new submenu called "YITH Essent
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
|
|
|
|
|
|
|
|
158 |
= 1.3.6 =
|
159 |
|
160 |
* Fixed: fatal error after update 1.3.5 with some configuration
|
@@ -353,4 +357,4 @@ YITH Essential Kit for WooCommerce #1 will add a new submenu called "YITH Essent
|
|
353 |
|
354 |
== Upgrade Notice ==
|
355 |
|
356 |
-
Last Stable Tag 1.3.
|
4 |
Tags: woocommerce,yith woocommerce colors and labels variations,yith woocommerce zoom magnifier,yith woocommerce wishlist,yith woocommerce ajax product filter,yith woocommerce ajax search,yith woocommerce catalog mode,yith woocommerce advanced reviews, yith woocommerce badges management,yith woocommerce cart messages,yith woocommerce review reminder,yith woocommerce quick view,yith woocommerce mailchimp,yith woocommerce stripe,yith woocommerce request a quote,yith woocommerce tab manager,yith woocommerce multi vendor
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.3.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.3.7 =
|
159 |
+
|
160 |
+
* Fixed: Prevent plugin framework not loaded
|
161 |
+
|
162 |
= 1.3.6 =
|
163 |
|
164 |
* Fixed: fatal error after update 1.3.5 with some configuration
|
357 |
|
358 |
== Upgrade Notice ==
|
359 |
|
360 |
+
Last Stable Tag 1.3.7
|
init.php
CHANGED
@@ -7,7 +7,7 @@ Text Domain: yith-essential-kit-for-woocommerce-1
|
|
7 |
Domain Path: /languages/
|
8 |
Author: YIThemes
|
9 |
Author URI: http://yithemes.com/
|
10 |
-
Version: 1.3.
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) {
|
7 |
Domain Path: /languages/
|
8 |
Author: YIThemes
|
9 |
Author URI: http://yithemes.com/
|
10 |
+
Version: 1.3.7
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) {
|
yith-jetpack.php
CHANGED
@@ -202,8 +202,11 @@ if ( ! class_exists( 'YITH_JetPack' ) ) {
|
|
202 |
public function plugin_fw_loader() {
|
203 |
if ( ! defined( 'YIT_CORE_PLUGIN' ) ) {
|
204 |
global $plugin_fw_data;
|
205 |
-
|
206 |
-
|
|
|
|
|
|
|
207 |
}
|
208 |
}
|
209 |
|
202 |
public function plugin_fw_loader() {
|
203 |
if ( ! defined( 'YIT_CORE_PLUGIN' ) ) {
|
204 |
global $plugin_fw_data;
|
205 |
+
if( ! empty( $plugin_fw_data ) ) {
|
206 |
+
$plugin_fw_file = array_shift( $plugin_fw_data );
|
207 |
+
require_once( $plugin_fw_file );
|
208 |
+
}
|
209 |
+
|
210 |
}
|
211 |
}
|
212 |
|