Booster for WooCommerce - Version 4.0.1

Version Description

  • 12/10/2018 =
  • Fix - SHIPPING & ORDERS - Shipping Methods by Current Date/Time - Admin settings section title fixed.
  • Dev - EMAILS & MISC. - Custom PHP - Module description updated.
Download this release

Release Info

Developer algoritmika
Plugin Icon 128x128 Booster for WooCommerce
Version 4.0.1
Comparing to
See all releases

Code changes from version 4.0.0 to 4.0.1

includes/class-wcj-custom-php.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Custom PHP
4
  *
5
- * @version 4.0.0
6
  * @since 4.0.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -16,7 +16,7 @@ class WCJ_Custom_PHP extends WCJ_Module {
16
  /**
17
  * Constructor.
18
  *
19
- * @version 4.0.0
20
  * @since 4.0.0
21
  * @todo [dev] maybe remove `wcj_disable_custom_php` from URL on settings save
22
  * @todo [dev] allow tab in content (i.e. settings (textarea))
@@ -25,7 +25,7 @@ class WCJ_Custom_PHP extends WCJ_Module {
25
 
26
  $this->id = 'custom_php';
27
  $this->short_desc = __( 'Custom PHP', 'woocommerce-jetpack' );
28
- $this->desc = __( 'Custom PHP.', 'woocommerce-jetpack' );
29
  $this->extra_desc = sprintf(
30
  __( 'Please note that if you enable the module and enter non-valid PHP code here, your site will become unavailable. To fix this you will have to add %s attribute to the URL (you must be logged as shop manager or admin (for this reason custom PHP code is not executed on %s page)).', 'woocommerce-jetpack' ),
31
  '<code>wcj_disable_custom_php</code>', '<strong>wp-login.php</strong>' ) . ' ' .
2
  /**
3
  * Booster for WooCommerce - Module - Custom PHP
4
  *
5
+ * @version 4.0.1
6
  * @since 4.0.0
7
  * @author Algoritmika Ltd.
8
  */
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 4.0.1
20
  * @since 4.0.0
21
  * @todo [dev] maybe remove `wcj_disable_custom_php` from URL on settings save
22
  * @todo [dev] allow tab in content (i.e. settings (textarea))
25
 
26
  $this->id = 'custom_php';
27
  $this->short_desc = __( 'Custom PHP', 'woocommerce-jetpack' );
28
+ $this->desc = __( 'Custom PHP tool.', 'woocommerce-jetpack' );
29
  $this->extra_desc = sprintf(
30
  __( 'Please note that if you enable the module and enter non-valid PHP code here, your site will become unavailable. To fix this you will have to add %s attribute to the URL (you must be logged as shop manager or admin (for this reason custom PHP code is not executed on %s page)).', 'woocommerce-jetpack' ),
31
  '<code>wcj_disable_custom_php</code>', '<strong>wp-login.php</strong>' ) . ' ' .
includes/class-wcj-shipping-by-time.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Shipping by Time
4
  *
5
- * @version 4.0.0
6
  * @since 4.0.0
7
  * @author Algoritmika Ltd.
8
  */
@@ -16,7 +16,7 @@ class WCJ_Shipping_By_Time extends WCJ_Module_Shipping_By_Condition {
16
  /**
17
  * Constructor.
18
  *
19
- * @version 4.0.0
20
  * @since 4.0.0
21
  * @todo [dev] add more "Valid time input" examples
22
  * @todo [feature] multiple time values (i.e. `__( 'Otherwise enter time one per line.', 'woocommerce-jetpack' )`)
@@ -30,7 +30,7 @@ class WCJ_Shipping_By_Time extends WCJ_Module_Shipping_By_Condition {
30
 
31
  $this->condition_options = array(
32
  'time' => array(
33
- 'title' => __( 'Time', 'woocommerce-jetpack' ),
34
  'desc' => '<br>' . sprintf( __( 'Current time: %s.', 'woocommerce-jetpack' ), '<code>' . current_time( 'Y-m-d H:i:s' ) . '</code>' ) . '<br>' .
35
  sprintf( __( 'Time <em>from</em> and time <em>to</em> must be separated with %s symbol.', 'woocommerce-jetpack' ), '<code>~</code>' ) . ' ' .
36
  sprintf( __( 'Each time input must be set in format that is parsable by PHP %s function.', 'woocommerce-jetpack' ),
2
  /**
3
  * Booster for WooCommerce - Module - Shipping by Time
4
  *
5
+ * @version 4.0.1
6
  * @since 4.0.0
7
  * @author Algoritmika Ltd.
8
  */
16
  /**
17
  * Constructor.
18
  *
19
+ * @version 4.0.1
20
  * @since 4.0.0
21
  * @todo [dev] add more "Valid time input" examples
22
  * @todo [feature] multiple time values (i.e. `__( 'Otherwise enter time one per line.', 'woocommerce-jetpack' )`)
30
 
31
  $this->condition_options = array(
32
  'time' => array(
33
+ 'title' => __( 'Current Date/Time', 'woocommerce-jetpack' ),
34
  'desc' => '<br>' . sprintf( __( 'Current time: %s.', 'woocommerce-jetpack' ), '<code>' . current_time( 'Y-m-d H:i:s' ) . '</code>' ) . '<br>' .
35
  sprintf( __( 'Time <em>from</em> and time <em>to</em> must be separated with %s symbol.', 'woocommerce-jetpack' ), '<code>~</code>' ) . ' ' .
36
  sprintf( __( 'Each time input must be set in format that is parsable by PHP %s function.', 'woocommerce-jetpack' ),
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: algoritmika, anbinder, debugeris
3
  Tags: woocommerce, booster for woocommerce, woocommerce jetpack
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
- Stable tag: 4.0.0
7
  License: GNU General Public License v3.0
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -140,7 +140,7 @@ Booster for WooCommerce is a WordPress WooCommerce plugin that supercharges your
140
  * *Custom CSS* - Separate custom CSS for front and back end. Per product CSS.
141
  * *Custom Emails* - Add custom emails to WooCommerce.
142
  * *Custom JS* - Separate custom JS for front and back end.
143
- * *Custom PHP* - Custom PHP.
144
  * *Email Options* - WooCommerce email options. E.g.: add another email recipient(s) to all WooCommerce emails.
145
  * *Email Verification* - Add WooCommerce email verification.
146
  * *Export* - WooCommerce export tools.
@@ -191,6 +191,10 @@ You can see the differences between versions in this [table](https://booster.io/
191
 
192
  == Changelog ==
193
 
 
 
 
 
194
  = 4.0.0 - 11/10/2018 =
195
  * Feature - PRICES & CURRENCIES - Multicurrency (Currency Switcher) - Widget - "Form Method", "Class" and "Style" options added.
196
  * Feature - PRODUCTS - Product Addons - Frontend Templates - "Each Addon - Type: Select Box (Each Option)" option added.
3
  Tags: woocommerce, booster for woocommerce, woocommerce jetpack
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
+ Stable tag: 4.0.1
7
  License: GNU General Public License v3.0
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
140
  * *Custom CSS* - Separate custom CSS for front and back end. Per product CSS.
141
  * *Custom Emails* - Add custom emails to WooCommerce.
142
  * *Custom JS* - Separate custom JS for front and back end.
143
+ * *Custom PHP* - Custom PHP tool.
144
  * *Email Options* - WooCommerce email options. E.g.: add another email recipient(s) to all WooCommerce emails.
145
  * *Email Verification* - Add WooCommerce email verification.
146
  * *Export* - WooCommerce export tools.
191
 
192
  == Changelog ==
193
 
194
+ = 4.0.1 - 12/10/2018 =
195
+ * Fix - SHIPPING & ORDERS - Shipping Methods by Current Date/Time - Admin settings section title fixed.
196
+ * Dev - EMAILS & MISC. - Custom PHP - Module description updated.
197
+
198
  = 4.0.0 - 11/10/2018 =
199
  * Feature - PRICES & CURRENCIES - Multicurrency (Currency Switcher) - Widget - "Form Method", "Class" and "Style" options added.
200
  * Feature - PRODUCTS - Product Addons - Frontend Templates - "Each Addon - Type: Select Box (Each Option)" option added.
woocommerce-jetpack.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Booster for WooCommerce
4
  Plugin URI: https://booster.io
5
  Description: Supercharge your WooCommerce site with these awesome powerful features. More than 100 modules. All in one WooCommerce plugin.
6
- Version: 4.0.0
7
  Author: Algoritmika Ltd
8
  Author URI: https://booster.io
9
  Text Domain: woocommerce-jetpack
@@ -35,7 +35,7 @@ if ( ! defined( 'WCJ_PLUGIN_FILE' ) ) {
35
  /**
36
  * WCJ_PLUGIN_FILE.
37
  *
38
- * @since 3.2.4
39
  */
40
  define( 'WCJ_PLUGIN_FILE', __FILE__ );
41
  }
@@ -57,7 +57,7 @@ final class WC_Jetpack {
57
  * @var string
58
  * @since 2.4.7
59
  */
60
- public $version = '4.0.0';
61
 
62
  /**
63
  * @var WC_Jetpack The single instance of the class
3
  Plugin Name: Booster for WooCommerce
4
  Plugin URI: https://booster.io
5
  Description: Supercharge your WooCommerce site with these awesome powerful features. More than 100 modules. All in one WooCommerce plugin.
6
+ Version: 4.0.1
7
  Author: Algoritmika Ltd
8
  Author URI: https://booster.io
9
  Text Domain: woocommerce-jetpack
35
  /**
36
  * WCJ_PLUGIN_FILE.
37
  *
38
+ * @since 3.2.4
39
  */
40
  define( 'WCJ_PLUGIN_FILE', __FILE__ );
41
  }
57
  * @var string
58
  * @since 2.4.7
59
  */
60
+ public $version = '4.0.1';
61
 
62
  /**
63
  * @var WC_Jetpack The single instance of the class