Version Description
- Fix: Notice on YITH WooCommerce Ajax Search module
Download this release
Release Info
Developer | yithemes |
Plugin | YITH Essential Kit for WooCommerce #1 |
Version | 1.4.6 |
Comparing to | |
See all releases |
Code changes from version 1.4.5 to 1.4.6
- README.txt +4 -1
- init.php +1 -1
- modules/yith-woocommerce-ajax-search/class.yith-wcas.php +5 -1
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.4
|
7 |
-
Stable tag: 1.4.
|
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 |
= 1.4.5 =
|
159 |
* New: Modules update to latest versions
|
160 |
|
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.4
|
7 |
+
Stable tag: 1.4.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.4.6 =
|
159 |
+
* Fix: Notice on YITH WooCommerce Ajax Search module
|
160 |
+
|
161 |
= 1.4.5 =
|
162 |
* New: Modules update to latest versions
|
163 |
|
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.4.
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) {
|
7 |
Domain Path: /languages/
|
8 |
Author: YIThemes
|
9 |
Author URI: http://yithemes.com/
|
10 |
+
Version: 1.4.6
|
11 |
*/
|
12 |
|
13 |
if ( ! defined( 'ABSPATH' ) ) {
|
modules/yith-woocommerce-ajax-search/class.yith-wcas.php
CHANGED
@@ -55,7 +55,11 @@ if ( !class_exists( 'YITH_WCAS' ) ) {
|
|
55 |
$this->obj = new YITH_WCAS_Frontend( $this->version );
|
56 |
}
|
57 |
}
|
58 |
-
|
|
|
|
|
|
|
|
|
59 |
// actions
|
60 |
add_action( 'widgets_init', array( $this, 'registerWidgets' ) );
|
61 |
|
55 |
$this->obj = new YITH_WCAS_Frontend( $this->version );
|
56 |
}
|
57 |
}
|
58 |
+
if ( class_exists( 'YITH_JetPack' ) ) {
|
59 |
+
include_once( YJP_DIR . 'plugin-fw/yit-woocommerce-compatibility.php' );
|
60 |
+
} else {
|
61 |
+
include_once( YITH_WCAS_DIR . 'plugin-fw/yit-woocommerce-compatibility.php' );
|
62 |
+
}
|
63 |
// actions
|
64 |
add_action( 'widgets_init', array( $this, 'registerWidgets' ) );
|
65 |
|