Version Description
Release Date - 2017-12-04 * FIX: Typo 'impode' (Thanks to Constantine for reporting)
Download this release
Release Info
Developer | josk79 |
Plugin | WooCommerce Extended Coupon Features |
Version | 2.6.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.6.0 to 2.6.0.2
- includes/WJECF_Controller.php +1 -1
- readme.txt +9 -1
- woocommerce-jos-autocoupon.php +2 -2
includes/WJECF_Controller.php
CHANGED
@@ -359,7 +359,7 @@ class WJECF_Controller {
|
|
359 |
//check if every single category is in the cart
|
360 |
foreach( apply_filters( 'wjecf_get_product_cat_ids', $wrap_coupon->get_product_categories() ) as $cat_id ) {
|
361 |
if ( ! in_array( $cat_id, $product_cats ) ) {
|
362 |
-
$this->log( 'debug', $cat_id . " is not in " .
|
363 |
throw new Exception( WC_Coupon::E_WC_COUPON_NOT_APPLICABLE );
|
364 |
}
|
365 |
}
|
359 |
//check if every single category is in the cart
|
360 |
foreach( apply_filters( 'wjecf_get_product_cat_ids', $wrap_coupon->get_product_categories() ) as $cat_id ) {
|
361 |
if ( ! in_array( $cat_id, $product_cats ) ) {
|
362 |
+
$this->log( 'debug', $cat_id . " is not in " . implode( ',', $product_cats ));
|
363 |
throw new Exception( WC_Coupon::E_WC_COUPON_NOT_APPLICABLE );
|
364 |
}
|
365 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQ
|
|
4 |
Tags: woocommerce, coupons, discount
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.9.1
|
7 |
-
Stable tag: 2.6.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -106,6 +106,14 @@ Sure! [This](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5T9XQ
|
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
= 2.6.0 =
|
110 |
*Release Date - 2017-12-02*
|
111 |
* ADMIN: Compatibility with coupons added on the Order page from wp-admin (requires WC3.3+)
|
4 |
Tags: woocommerce, coupons, discount
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.9.1
|
7 |
+
Stable tag: 2.6.0.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
106 |
|
107 |
== Changelog ==
|
108 |
|
109 |
+
= 2.6.0.2 =
|
110 |
+
*Release Date - 2017-12-04*
|
111 |
+
* FIX: Typo 'impode' (Thanks to Constantine for reporting)
|
112 |
+
|
113 |
+
= 2.6.0.1 =
|
114 |
+
*Release Date - 2017-12-02*
|
115 |
+
* ADMIN: Fix: Changelog of plugin update screen
|
116 |
+
|
117 |
= 2.6.0 =
|
118 |
*Release Date - 2017-12-02*
|
119 |
* ADMIN: Compatibility with coupons added on the Order page from wp-admin (requires WC3.3+)
|
woocommerce-jos-autocoupon.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* Plugin Name: WooCommerce Extended Coupon Features
|
4 |
* Plugin URI: http://www.soft79.nl
|
5 |
* Description: Additional functionality for WooCommerce Coupons: Apply certain coupons automatically, allow applying coupons via an url, etc...
|
6 |
-
* Version: 2.6.0
|
7 |
* Author: Soft79
|
8 |
* License: GPL2
|
9 |
* WC requires at least: 2.6.0
|
10 |
* WC tested up to: 3.3.0
|
11 |
*/
|
12 |
|
13 |
-
if ( ! defined('WJECF_VERSION') ) define ('WJECF_VERSION', '2.6.0');
|
14 |
|
15 |
// Changelog: see readme.txt
|
16 |
|
3 |
* Plugin Name: WooCommerce Extended Coupon Features
|
4 |
* Plugin URI: http://www.soft79.nl
|
5 |
* Description: Additional functionality for WooCommerce Coupons: Apply certain coupons automatically, allow applying coupons via an url, etc...
|
6 |
+
* Version: 2.6.0.2
|
7 |
* Author: Soft79
|
8 |
* License: GPL2
|
9 |
* WC requires at least: 2.6.0
|
10 |
* WC tested up to: 3.3.0
|
11 |
*/
|
12 |
|
13 |
+
if ( ! defined('WJECF_VERSION') ) define ('WJECF_VERSION', '2.6.0.2');
|
14 |
|
15 |
// Changelog: see readme.txt
|
16 |
|