YITH Essential Kit for WooCommerce #1 - Version 2.0.1

Version Description

  • Update: Backward compatibility with external plugins using methods from version 1.x.x
Download this release

Release Info

Developer yithemes
Plugin Icon 128x128 YITH Essential Kit for WooCommerce #1
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0.0 to 2.0.1

Files changed (3) hide show
  1. README.txt +4 -1
  2. init.php +4 -4
  3. yith-jetpack.php +11 -0
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.9
7
- Stable tag: 2.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -155,6 +155,9 @@ YITH Essential Kit for WooCommerce #1 will add a new submenu called "YITH Essent
155
 
156
  == Changelog ==
157
 
 
 
 
158
  = 2.0.0 =
159
  * Update: YITH Plugin Framework
160
  * Update: All YITH modules are now external to this plugin
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.9
7
+ Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
155
 
156
  == Changelog ==
157
 
158
+ = 2.0.1 =
159
+ * Update: Backward compatibility with external plugins using methods from version 1.x.x
160
+
161
  = 2.0.0 =
162
  * Update: YITH Plugin Framework
163
  * Update: All YITH modules are now external to this plugin
init.php CHANGED
@@ -7,13 +7,13 @@
7
  * Domain Path: /languages/
8
  * Author: YITH
9
  * Author URI: https://yithemes.com/
10
- * Version: 2.0.0
11
  * WC requires at least: 2.5.0
12
  * WC tested up to: 3.5
13
  * @author YITHEMES
14
- * @package YITH WooCommerce Color and Label Variations
15
- * @version 1.3.0
16
- */
17
 
18
  if ( ! defined( 'ABSPATH' ) ) {
19
  exit;
7
  * Domain Path: /languages/
8
  * Author: YITH
9
  * Author URI: https://yithemes.com/
10
+ * Version: 2.0.1
11
  * WC requires at least: 2.5.0
12
  * WC tested up to: 3.5
13
  * @author YITHEMES
14
+ * @package YITH Essential Kit for Woocommerce #1
15
+ * @version 2.0.1
16
+ */
17
 
18
  if ( ! defined( 'ABSPATH' ) ) {
19
  exit;
yith-jetpack.php CHANGED
@@ -582,6 +582,17 @@ if ( ! class_exists( 'YITH_JetPack' ) ) {
582
 
583
  }
584
  }
 
 
 
 
 
 
 
 
 
 
 
585
  }
586
  }
587
 
582
 
583
  }
584
  }
585
+
586
+ /**
587
+ * Backward compatibility with version prior 2.0.0
588
+ *
589
+ * @param $premium_constant
590
+ *
591
+ * @return bool
592
+ */
593
+ public function deactivate_module_by_premium_constant( $premium_constant ) {
594
+ return false;
595
+ }
596
  }
597
  }
598