Booster for WooCommerce - Version 5.4.2

Version Description

24/06/2021 = * Fix - CART & CHECKOUT - Checkout Custom Fields - Fixed duplicate meta key issue. * Fix - SHIPPING & ORDERS - Order Numbers - Fixed hashid dependency issue. * Fix - PRODUCTS - SKU - Fixed hashid dependency issue. * Feature - CONTACT SUPPORT - Quick link to reach us for technical support or suggest an idea. * PHP 8.0.6 tested * WooCommerce 5.4.1 tested * Wordpress 5.7.2 tested

Download this release

Release Info

Developer ronyp
Plugin Icon 128x128 Booster for WooCommerce
Version 5.4.2
Comparing to
See all releases

Code changes from version 5.4.1 to 5.4.2

assets/images/pop_icon.png ADDED
Binary file
assets/images/suggestion-w.png ADDED
Binary file
assets/images/support-24-h-w.png ADDED
Binary file
assets/images/support-3d-w.png ADDED
Binary file
includes/admin/class-wc-settings-jetpack.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Settings
4
  *
5
- * @version 5.3.9
6
  * @since 1.0.0
7
  * @author Pluggabl LLC.
8
  */
@@ -46,6 +46,8 @@ if (!class_exists('WC_Settings_Jetpack')):
46
  // Create a PRO version ratting notice
47
  add_action('woocommerce_after_settings_' . $this->id, array($this, 'create_pro_version_footer_review_notice'));
48
 
 
 
49
  require_once 'class-wcj-settings-custom-fields.php';
50
  }
51
 
@@ -193,11 +195,46 @@ if (!class_exists('WC_Settings_Jetpack')):
193
  /**
194
  * create_pro_version_footer_review_notice.
195
  *
196
- * @version 5.3.9
197
  * @since 5.3.1
198
  */
199
- public function create_pro_version_footer_review_notice()
200
- {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  if ('booster-plus-for-woocommerce.php' !== basename(WCJ_PLUGIN_FILE)) {
202
  return;
203
  }
@@ -217,6 +254,17 @@ if (!class_exists('WC_Settings_Jetpack')):
217
  echo '<div class="' . $class . '"><p>' . $message . '</p></div>';
218
  }
219
 
 
 
 
 
 
 
 
 
 
 
 
220
  /**
221
  * Output cats
222
  *
2
  /**
3
  * Booster for WooCommerce - Settings
4
  *
5
+ * @version 5.4.2
6
  * @since 1.0.0
7
  * @author Pluggabl LLC.
8
  */
46
  // Create a PRO version ratting notice
47
  add_action('woocommerce_after_settings_' . $this->id, array($this, 'create_pro_version_footer_review_notice'));
48
 
49
+ add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_script' ) );
50
+
51
  require_once 'class-wcj-settings-custom-fields.php';
52
  }
53
 
195
  /**
196
  * create_pro_version_footer_review_notice.
197
  *
198
+ * @version 5.4.2
199
  * @since 5.3.1
200
  */
201
+ public function create_pro_version_footer_review_notice() {
202
+ $sec_link = wcj_plugin_url();
203
+ ?>
204
+ <div class="circleBox">
205
+ <div class="circle-badge" style="float:right">
206
+ <img src="<?php echo $sec_link ?>/assets/images/pop_icon.png">
207
+ </div>
208
+ <div class="subCircles">
209
+ <div class="sub-circle">
210
+ <div class="form_label">
211
+ <a href="https://booster.io/submit-idea/" target="_blank">
212
+ <label>Suggest a feature</label>
213
+ <div class="ic_list">
214
+ <img src="<?php echo $sec_link ?>/assets/images/suggestion-w.png">
215
+ </div>
216
+ </a>
217
+ </div>
218
+ </div>
219
+ <div class="sub-circle">
220
+ <a href="https://wordpress.org/support/plugin/woocommerce-jetpack/#new-topic-0" target="_blank">
221
+ <div class="form_label">
222
+ <label>Booster Free Support (72 business hours response)</label>
223
+ <div class="ic_list"><img src="<?php echo $sec_link ?>/assets/images/support-3d-w.png"></div>
224
+ </div>
225
+ </a>
226
+ </div>
227
+ <div class="sub-circle">
228
+ <a href="https://booster.io/my-account/booster-contact/" target="_blank">
229
+ <div class="form_label">
230
+ <label>Booster Plus Premium Support (4 hours - 24 hours response)</label>
231
+ <div class="ic_list"><img src="<?php echo $sec_link ?>/assets/images/support-24-h-w.png"></div>
232
+ </div>
233
+ </a>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ <?php
238
  if ('booster-plus-for-woocommerce.php' !== basename(WCJ_PLUGIN_FILE)) {
239
  return;
240
  }
254
  echo '<div class="' . $class . '"><p>' . $message . '</p></div>';
255
  }
256
 
257
+ /**
258
+ * enqueue_admin_script.
259
+ *
260
+ * @version 5.4.2
261
+ * @since 5.4.2
262
+ */
263
+ function enqueue_admin_script() {
264
+ wp_enqueue_script( 'wcj-admin-js', trailingslashit( wcj_plugin_url() ) . 'includes/js/wcj-admin.js', array( 'jquery' ), WCJ()->version, true );
265
+ wp_localize_script( 'wcj-admin-js', 'admin_object' , false );
266
+ }
267
+
268
  /**
269
  * Output cats
270
  *
includes/class-wcj-checkout-custom-fields.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Custom Fields
4
  *
5
- * @version 5.4.0
6
  * @author Pluggabl LLC.
7
  */
8
 
@@ -205,7 +205,7 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
205
  /**
206
  * update_custom_checkout_fields_order_meta.
207
  *
208
- * @version 4.6.1
209
  */
210
  function update_custom_checkout_fields_order_meta( $order_id ) {
211
  for ( $i = 1; $i <= apply_filters( 'booster_option', 1, wcj_get_option( 'wcj_checkout_custom_fields_total_number', 1 ) ); $i++ ) {
@@ -231,7 +231,7 @@ class WCJ_Checkout_Custom_Fields extends WCJ_Module {
231
  get_option( 'wcj_checkout_custom_field_checkbox_no_' . $i );
232
  update_post_meta( $order_id, '_' . $option_name_checkbox_value, $checkbox_value );
233
  } elseif ( 'radio' === $the_type || 'select' === $the_type ) {
234
- update_post_meta( $order_id, '_' . $option_name, wc_clean( urldecode( $post_value ) ) );
235
  $option_name_values = $the_section . '_' . 'wcj_checkout_field_select_options_' . $i;
236
  $the_values = wcj_get_option( 'wcj_checkout_custom_field_select_options_' . $i );
237
  update_post_meta( $order_id, '_' . $option_name_values, $the_values );
2
  /**
3
  * Booster for WooCommerce - Module - Checkout Custom Fields
4
  *
5
+ * @version 5.4.2
6
  * @author Pluggabl LLC.
7
  */
8
 
205
  /**
206
  * update_custom_checkout_fields_order_meta.
207
  *
208
+ * @version 5.4.2
209
  */
210
  function update_custom_checkout_fields_order_meta( $order_id ) {
211
  for ( $i = 1; $i <= apply_filters( 'booster_option', 1, wcj_get_option( 'wcj_checkout_custom_fields_total_number', 1 ) ); $i++ ) {
231
  get_option( 'wcj_checkout_custom_field_checkbox_no_' . $i );
232
  update_post_meta( $order_id, '_' . $option_name_checkbox_value, $checkbox_value );
233
  } elseif ( 'radio' === $the_type || 'select' === $the_type ) {
234
+ // update_post_meta( $order_id, '_' . $option_name, wc_clean( urldecode( $post_value ) ) );
235
  $option_name_values = $the_section . '_' . 'wcj_checkout_field_select_options_' . $i;
236
  $the_values = wcj_get_option( 'wcj_checkout_custom_field_select_options_' . $i );
237
  update_post_meta( $order_id, '_' . $option_name_values, $the_values );
includes/css/wcj-admin.css CHANGED
@@ -1,7 +1,7 @@
1
  /**
2
  * wcj-admin.
3
  *
4
- * @version 2.5.3
5
  * @since 2.5.3
6
  */
7
 
@@ -172,4 +172,132 @@ img.wcj-rocket-icon:hover {
172
  color: #f46c5e;
173
  font-size: 16px;
174
  }
175
- /* end admin getting strted welcome page */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  /**
2
  * wcj-admin.
3
  *
4
+ * @version 5.4.2
5
  * @since 2.5.3
6
  */
7
 
172
  color: #f46c5e;
173
  font-size: 16px;
174
  }
175
+ /* end admin getting strted welcome page */
176
+
177
+ /* footer review notice start */
178
+
179
+ .circleBox {
180
+ width: 100px;
181
+ height: 100px;
182
+ border-radius: 50%;
183
+ text-align: center;
184
+ position: fixed;
185
+ float: right;
186
+ margin-top: -89px;
187
+ bottom: 20px;
188
+ right: 40px;
189
+ }
190
+
191
+ .circle-badge img {
192
+ height: 61px;
193
+ border-radius: 50%;
194
+ }
195
+
196
+ .circleBox .circle-badge {
197
+ font-size: 45px;
198
+ color: #f46c5e;
199
+ width: 100%;
200
+ height: 100%;
201
+ border-radius: 50%;
202
+ cursor: pointer;
203
+ transition: 0.5s;
204
+ z-index: 1000;
205
+ position: absolute;
206
+ display: flex;
207
+ align-items: center;
208
+ justify-content: center;
209
+ }
210
+
211
+ /* After TOGGLE CLASS [ Active ] On The circle-badge */
212
+ .circleBox .circle-badge.active {
213
+ transform: rotateZ(180deg);
214
+ }
215
+
216
+ /* Sub Circles */
217
+ .subCircles {
218
+ display: inline-flex;
219
+ background-color: red;
220
+ }
221
+
222
+ .subCircles .sub-circle {
223
+ color: #5DACD8;
224
+ line-height: 80px;
225
+ font-size: 25px;
226
+ position: absolute;
227
+ top: 6px;
228
+ left: 6px;
229
+ z-index: 999;
230
+ transition: 0.5s;
231
+ transform: scale(0);
232
+ cursor: pointer;
233
+ }
234
+
235
+ .subCircles .sub-circle .ic_list {
236
+ width: 50px;
237
+ height: 50px;
238
+ background-color: #f46c5e;
239
+ border-radius: 50%;
240
+ display: flex;
241
+ align-items: center;
242
+ justify-content: center;
243
+ }
244
+
245
+ .subCircles .sub-circle .form_label {
246
+ position: relative;
247
+ }
248
+
249
+ .subCircles .sub-circle .form_label label {
250
+ position: absolute;
251
+ display: block;
252
+ top: 50%;
253
+ right: calc(100% + 25px);
254
+ transform: translateY(-50%);
255
+ -moz-transform: translateY(-50%);
256
+ -webkit-transform: translateY(-50%);
257
+ color: #fff;
258
+ background: #f46c5e 0 0 no-repeat padding-box;
259
+ font-size: 12px;
260
+ white-space: nowrap;
261
+ padding: 5px 10px;
262
+ height: auto !important;
263
+ line-height: initial;
264
+ transition: all 0.2s ease-out;
265
+ border-radius: 3px;
266
+ -moz-border-radius: 3px;
267
+ -webkit-border-radius: 3px;
268
+ }
269
+
270
+ .subCircles .sub-circle .ic_list img {
271
+ width: 32px;
272
+ }
273
+
274
+ .subCircles .sub-circle .subCircles .sub-circle:hover {
275
+ opacity: 0.9;
276
+ }
277
+
278
+ .subCircles .sub-circle:active {
279
+ opacity: 1;
280
+ transform: scale(0.9);
281
+ }
282
+
283
+ /* After Toggle Class Show */
284
+ .sub-circle.show {
285
+ transform: scale(1);
286
+ }
287
+
288
+ .sub-circle.show:first-child {
289
+ top: -40px;
290
+ left: 25px;
291
+ }
292
+
293
+ .sub-circle.show:nth-child(2) {
294
+ top: -100px;
295
+ left: 25px;
296
+ }
297
+
298
+ .sub-circle.show:nth-child(3) {
299
+ left: 25px;
300
+ top: -160px;
301
+ }
302
+
303
+ /* footer review notice end */
includes/js/wcj-admin.js ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * wcj-admin.
3
+ *
4
+ * @version 5.4.2
5
+ * @since 5.4.2
6
+ */
7
+
8
+ jQuery(document).ready(function () {
9
+ let circleBadge = document.querySelector('.circle-badge'),
10
+ subCircles = document.querySelectorAll('.subCircles > div');
11
+
12
+ circleBadge.addEventListener('click', showCircles);
13
+
14
+ function showCircles() {
15
+ subCircles.forEach(circle => {
16
+ circle.classList.toggle("show");
17
+ })
18
+ };
19
+ });
includes/lib/hashids/src/Hashids.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
-
3
  /*
4
  * This file is part of Hashids.
5
  *
@@ -11,10 +10,17 @@
11
 
12
  namespace Hashids;
13
 
 
 
 
 
 
14
  use Hashids\Math\Bc;
15
  use Hashids\Math\Gmp;
16
  use RuntimeException;
17
 
 
 
18
  /**
19
  * This is the hashids class.
20
  *
1
  <?php
 
2
  /*
3
  * This file is part of Hashids.
4
  *
10
 
11
  namespace Hashids;
12
 
13
+ require_once('HashidsInterface.php');
14
+ require_once('Math/Bc.php');
15
+ require_once('Math/Gmp.php');
16
+
17
+
18
  use Hashids\Math\Bc;
19
  use Hashids\Math\Gmp;
20
  use RuntimeException;
21
 
22
+
23
+
24
  /**
25
  * This is the hashids class.
26
  *
includes/lib/hashids/src/Math/Bc.php CHANGED
@@ -11,6 +11,8 @@
11
 
12
  namespace Hashids\Math;
13
 
 
 
14
  /**
15
  * This is the Bc math class.
16
  *
11
 
12
  namespace Hashids\Math;
13
 
14
+ require_once('MathInterface.php');
15
+
16
  /**
17
  * This is the Bc math class.
18
  *
includes/lib/hashids/src/Math/Gmp.php CHANGED
@@ -10,7 +10,7 @@
10
  */
11
 
12
  namespace Hashids\Math;
13
-
14
  /**
15
  * This is the Gmp math class.
16
  *
10
  */
11
 
12
  namespace Hashids\Math;
13
+ require_once('MathInterface.php');
14
  /**
15
  * This is the Gmp math class.
16
  *
langs/woocommerce-jetpack.pot CHANGED
@@ -9,7 +9,7 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.3\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
@@ -34,7 +34,7 @@ msgid "Product category (archive) view"
34
  msgstr ""
35
 
36
  #: includes/admin/class-wc-settings-jetpack.php:29
37
- #: includes/admin/class-wc-settings-jetpack.php:409
38
  #: includes/class-wcj-admin-bar.php:276
39
  #: includes/class-wcj-checkout-files-upload.php:219
40
  #: includes/class-wcj-eu-vat-number.php:166
@@ -48,62 +48,62 @@ msgstr ""
48
  msgid "Booster"
49
  msgstr ""
50
 
51
- #: includes/admin/class-wc-settings-jetpack.php:65
52
  msgid "Upgrade today to unlock these popular premium features:"
53
  msgstr ""
54
 
55
- #: includes/admin/class-wc-settings-jetpack.php:67
56
  msgid "Add ability to create Proforma Invoices, Credit Notes and Packing slips"
57
  msgstr ""
58
 
59
- #: includes/admin/class-wc-settings-jetpack.php:68
60
  msgid ""
61
  "<strong>Cart and checkout</strong> – add multiple – custom fields, custom "
62
  "info blocks, check out file uploads"
63
  msgstr ""
64
 
65
- #: includes/admin/class-wc-settings-jetpack.php:69
66
  msgid ""
67
  "<strong>Prices and currencies</strong> – add more unlimited number of "
68
  "currencies to WooCommerce"
69
  msgstr ""
70
 
71
- #: includes/admin/class-wc-settings-jetpack.php:70
72
  msgid ""
73
  "<strong>Add to cart</strong> – customize add to cart messages, Button labels "
74
  "- multiple category groups allowed"
75
  msgstr ""
76
 
77
- #: includes/admin/class-wc-settings-jetpack.php:71
78
  msgid ""
79
  "<strong>Empty Cart</strong> – customize empty cart button text, different "
80
  "button positions on cart page"
81
  msgstr ""
82
 
83
- #: includes/admin/class-wc-settings-jetpack.php:72
84
  msgid "<strong>Mini cart</strong> – More custom information options"
85
  msgstr ""
86
 
87
- #: includes/admin/class-wc-settings-jetpack.php:73
88
  msgid "<strong>Export options</strong> – more fields enabled"
89
  msgstr ""
90
 
91
- #: includes/admin/class-wc-settings-jetpack.php:74
92
  msgid "More configuration options for payments and shipping"
93
  msgstr ""
94
 
95
- #: includes/admin/class-wc-settings-jetpack.php:84
96
  msgid "Upgrade to Booster Plus"
97
  msgstr ""
98
 
99
- #: includes/admin/class-wc-settings-jetpack.php:148
100
  #, php-format
101
  msgid ""
102
  "You're using Booster free version. To unlock more features please consider <a "
103
  "target=\"_blank\" href=\"%s\">upgrading to Plus</a>."
104
  msgstr ""
105
 
106
- #: includes/admin/class-wc-settings-jetpack.php:182
107
  #, php-format
108
  msgid ""
109
  "Please rate <strong>Booster for WooCommerce</strong> %s on <a href=\"%s\" "
@@ -111,7 +111,7 @@ msgid ""
111
  "from Booster team!"
112
  msgstr ""
113
 
114
- #: includes/admin/class-wc-settings-jetpack.php:208
115
  #, php-format
116
  msgid ""
117
  "Please rate <strong>Booster for WooCommerce</strong> %s on <a href=\"%s\" "
@@ -119,44 +119,44 @@ msgid ""
119
  "from Booster team!"
120
  msgstr ""
121
 
122
- #: includes/admin/class-wc-settings-jetpack.php:266
123
  #: includes/class-wcj-admin-bar.php:140
124
  msgid "Alphabetically"
125
  msgstr ""
126
 
127
- #: includes/admin/class-wc-settings-jetpack.php:267
128
  #: includes/class-wcj-admin-bar.php:144
129
  msgid "By Category"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wc-settings-jetpack.php:268
133
  #: includes/class-wcj-admin-bar.php:148
134
  msgid "Active"
135
  msgstr ""
136
 
137
- #: includes/admin/class-wc-settings-jetpack.php:269
138
  #: includes/class-wcj-admin-bar.php:152
139
  msgid "Manage Settings"
140
  msgstr ""
141
 
142
- #: includes/admin/class-wc-settings-jetpack.php:331
143
  #: includes/admin/wcj-modules-cats.php:14 includes/class-wcj-admin-bar.php:214
144
  #: includes/class-wcj-my-account.php:34
145
  msgid "Dashboard"
146
  msgstr ""
147
 
148
- #: includes/admin/class-wc-settings-jetpack.php:378
149
  #, php-format
150
  msgid ""
151
  "Please note that current <em>%s</em> module is deprecated and will be removed "
152
  "in future updates. Please use <em>%s</em> module instead."
153
  msgstr ""
154
 
155
- #: includes/admin/class-wc-settings-jetpack.php:383
156
  msgid "Module will be removed from the module's list as soon as you disable it."
157
  msgstr ""
158
 
159
- #: includes/admin/class-wc-settings-jetpack.php:394
160
  #, php-format
161
  msgid ""
162
  "Please note that <em>%s</em> module is currently under development. Until "
@@ -164,85 +164,85 @@ msgid ""
164
  "be moved to paid plugin version."
165
  msgstr ""
166
 
167
- #: includes/admin/class-wc-settings-jetpack.php:405
168
  #: includes/class-wcj-admin-bar.php:384
169
  #: includes/settings/wcj-settings-emails-verification.php:146
170
  #: includes/settings/wcj-settings-price-by-country.php:249
171
  msgid "WooCommerce"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wc-settings-jetpack.php:407
175
- #: includes/admin/class-wc-settings-jetpack.php:614
176
  #: includes/class-wcj-admin-bar.php:168 includes/class-wcj-admin-bar.php:508
177
  #: includes/class-wcj-admin-bar.php:608 includes/core/class-wcj-admin.php:116
178
  msgid "Settings"
179
  msgstr ""
180
 
181
- #: includes/admin/class-wc-settings-jetpack.php:459
182
  msgid ""
183
  "This section lets you export, import or reset all Booster's modules settings."
184
  msgstr ""
185
 
186
- #: includes/admin/class-wc-settings-jetpack.php:483
187
  #: includes/class-wcj-export-import.php:26
188
  msgid "Export"
189
  msgstr ""
190
 
191
- #: includes/admin/class-wc-settings-jetpack.php:484
192
  msgid "Export all Booster's options to a file."
193
  msgstr ""
194
 
195
- #: includes/admin/class-wc-settings-jetpack.php:487
196
  #: includes/class-wcj-purchase-data.php:104
197
  msgid "Import"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wc-settings-jetpack.php:489
201
  msgid "Import all Booster's options from a file."
202
  msgstr ""
203
 
204
- #: includes/admin/class-wc-settings-jetpack.php:493
205
  msgid ""
206
  "This will reset settings to defaults for all Booster modules. Are you sure?"
207
  msgstr ""
208
 
209
- #: includes/admin/class-wc-settings-jetpack.php:494
210
  msgid "Reset"
211
  msgstr ""
212
 
213
- #: includes/admin/class-wc-settings-jetpack.php:495
214
  msgid "Reset all Booster's options."
215
  msgstr ""
216
 
217
- #: includes/admin/class-wc-settings-jetpack.php:499
218
  msgid "This will delete all Booster meta. Are you sure?"
219
  msgstr ""
220
 
221
- #: includes/admin/class-wc-settings-jetpack.php:500
222
  msgid "Reset meta"
223
  msgstr ""
224
 
225
- #: includes/admin/class-wc-settings-jetpack.php:501
226
  msgid "Reset all Booster's meta."
227
  msgstr ""
228
 
229
- #: includes/admin/class-wc-settings-jetpack.php:539
230
  msgid "Version"
231
  msgstr ""
232
 
233
- #: includes/admin/class-wc-settings-jetpack.php:564
234
- #: includes/admin/class-wc-settings-jetpack.php:575
235
  msgid "Select All"
236
  msgstr ""
237
 
238
- #: includes/admin/class-wc-settings-jetpack.php:567
239
- #: includes/admin/class-wc-settings-jetpack.php:577
240
  #: includes/admin/class-wcj-tools.php:76
241
  msgid "Module"
242
  msgstr ""
243
 
244
- #: includes/admin/class-wc-settings-jetpack.php:569
245
- #: includes/admin/class-wc-settings-jetpack.php:580
246
  #: includes/admin/class-wcj-tools.php:77
247
  #: includes/export/class-wcj-fields-helper.php:293
248
  #: includes/gateways/class-wc-gateway-wcj-custom.php:61
@@ -254,103 +254,103 @@ msgstr ""
254
  msgid "Description"
255
  msgstr ""
256
 
257
- #: includes/admin/class-wc-settings-jetpack.php:616
258
  #: includes/class-wcj-admin-bar.php:172
259
- #: includes/classes/class-wcj-module.php:922
260
  msgid "Documentation"
261
  msgstr ""
262
 
263
- #: includes/admin/class-wc-settings-jetpack.php:627
264
  msgid "No active modules found."
265
  msgstr ""
266
 
267
- #: includes/admin/class-wc-settings-jetpack.php:631
268
  msgid "Total Modules:"
269
  msgstr ""
270
 
271
- #: includes/admin/class-wc-settings-jetpack.php:696
272
  msgid "Autoload Booster's Options"
273
  msgstr ""
274
 
275
- #: includes/admin/class-wc-settings-jetpack.php:698
276
  msgid ""
277
  "Choose if you want Booster's options to be autoloaded when calling "
278
  "add_option. After saving this option, you need to Reset all Booster's "
279
  "settings. Leave default value (i.e. Enabled) if not sure."
280
  msgstr ""
281
 
282
- #: includes/admin/class-wc-settings-jetpack.php:703
283
  msgid "Load Modules on Init Hook"
284
  msgstr ""
285
 
286
- #: includes/admin/class-wc-settings-jetpack.php:705
287
  msgid "Choose if you want to load Booster Modules on Init hook."
288
  msgstr ""
289
 
290
- #: includes/admin/class-wc-settings-jetpack.php:705
291
  msgid ""
292
  "It will load the locale appropriately if users change it from the profile "
293
  "page."
294
  msgstr ""
295
 
296
- #: includes/admin/class-wc-settings-jetpack.php:710
297
  msgid "Use List Instead of Comma Separated Text for Products in Settings"
298
  msgstr ""
299
 
300
- #: includes/admin/class-wc-settings-jetpack.php:712
301
- #: includes/admin/class-wc-settings-jetpack.php:726
302
- #: includes/admin/class-wc-settings-jetpack.php:735
303
  #, php-format
304
  msgid "Supported modules: %s."
305
  msgstr ""
306
 
307
- #: includes/admin/class-wc-settings-jetpack.php:713
308
  #: includes/class-wcj-payment-gateways-per-category.php:26
309
  msgid "Gateways per Product or Category"
310
  msgstr ""
311
 
312
- #: includes/admin/class-wc-settings-jetpack.php:714
313
  #: includes/class-wcj-global-discount.php:29
314
  #: includes/settings/wcj-settings-product-addons.php:254
315
  msgid "Global Discount"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wc-settings-jetpack.php:715
319
- #: includes/admin/class-wc-settings-jetpack.php:727
320
- #: includes/admin/class-wc-settings-jetpack.php:736
321
  #: includes/class-wcj-product-custom-info.php:24
322
  #: includes/functions/wcj-functions-general.php:449
323
  msgid "Product Info"
324
  msgstr ""
325
 
326
- #: includes/admin/class-wc-settings-jetpack.php:716
327
  #: includes/admin/wcj-welcome-screen-content.php:72
328
  #: includes/class-wcj-product-input-fields.php:24
329
  #: includes/input-fields/class-wcj-product-input-fields-core.php:185
330
  msgid "Product Input Fields"
331
  msgstr ""
332
 
333
- #: includes/admin/class-wc-settings-jetpack.php:717
334
  msgid "Products XML"
335
  msgstr ""
336
 
337
- #: includes/admin/class-wc-settings-jetpack.php:718
338
  #: includes/class-wcj-related-products.php:38
339
  #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:30
340
  #: includes/settings/wcj-settings-free-price.php:20
341
  msgid "Related Products"
342
  msgstr ""
343
 
344
- #: includes/admin/class-wc-settings-jetpack.php:724
345
  msgid ""
346
  "Use List Instead of Comma Separated Text for Products Categories in Settings"
347
  msgstr ""
348
 
349
- #: includes/admin/class-wc-settings-jetpack.php:733
350
  msgid "Use List Instead of Comma Separated Text for Products Tags in Settings"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wc-settings-jetpack.php:761
354
  #: includes/core/class-wcj-admin.php:100
355
  msgid "Booster for WooCommerce"
356
  msgstr ""
@@ -5779,11 +5779,11 @@ msgstr ""
5779
  msgid "Reset settings"
5780
  msgstr ""
5781
 
5782
- #: includes/classes/class-wcj-module.php:926
5783
  msgid "Module Options"
5784
  msgstr ""
5785
 
5786
- #: includes/classes/class-wcj-module.php:933
5787
  msgid "Enable Module"
5788
  msgstr ""
5789
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
34
  msgstr ""
35
 
36
  #: includes/admin/class-wc-settings-jetpack.php:29
37
+ #: includes/admin/class-wc-settings-jetpack.php:457
38
  #: includes/class-wcj-admin-bar.php:276
39
  #: includes/class-wcj-checkout-files-upload.php:219
40
  #: includes/class-wcj-eu-vat-number.php:166
48
  msgid "Booster"
49
  msgstr ""
50
 
51
+ #: includes/admin/class-wc-settings-jetpack.php:67
52
  msgid "Upgrade today to unlock these popular premium features:"
53
  msgstr ""
54
 
55
+ #: includes/admin/class-wc-settings-jetpack.php:69
56
  msgid "Add ability to create Proforma Invoices, Credit Notes and Packing slips"
57
  msgstr ""
58
 
59
+ #: includes/admin/class-wc-settings-jetpack.php:70
60
  msgid ""
61
  "<strong>Cart and checkout</strong> – add multiple – custom fields, custom "
62
  "info blocks, check out file uploads"
63
  msgstr ""
64
 
65
+ #: includes/admin/class-wc-settings-jetpack.php:71
66
  msgid ""
67
  "<strong>Prices and currencies</strong> – add more unlimited number of "
68
  "currencies to WooCommerce"
69
  msgstr ""
70
 
71
+ #: includes/admin/class-wc-settings-jetpack.php:72
72
  msgid ""
73
  "<strong>Add to cart</strong> – customize add to cart messages, Button labels "
74
  "- multiple category groups allowed"
75
  msgstr ""
76
 
77
+ #: includes/admin/class-wc-settings-jetpack.php:73
78
  msgid ""
79
  "<strong>Empty Cart</strong> – customize empty cart button text, different "
80
  "button positions on cart page"
81
  msgstr ""
82
 
83
+ #: includes/admin/class-wc-settings-jetpack.php:74
84
  msgid "<strong>Mini cart</strong> – More custom information options"
85
  msgstr ""
86
 
87
+ #: includes/admin/class-wc-settings-jetpack.php:75
88
  msgid "<strong>Export options</strong> – more fields enabled"
89
  msgstr ""
90
 
91
+ #: includes/admin/class-wc-settings-jetpack.php:76
92
  msgid "More configuration options for payments and shipping"
93
  msgstr ""
94
 
95
+ #: includes/admin/class-wc-settings-jetpack.php:86
96
  msgid "Upgrade to Booster Plus"
97
  msgstr ""
98
 
99
+ #: includes/admin/class-wc-settings-jetpack.php:150
100
  #, php-format
101
  msgid ""
102
  "You're using Booster free version. To unlock more features please consider <a "
103
  "target=\"_blank\" href=\"%s\">upgrading to Plus</a>."
104
  msgstr ""
105
 
106
+ #: includes/admin/class-wc-settings-jetpack.php:184
107
  #, php-format
108
  msgid ""
109
  "Please rate <strong>Booster for WooCommerce</strong> %s on <a href=\"%s\" "
111
  "from Booster team!"
112
  msgstr ""
113
 
114
+ #: includes/admin/class-wc-settings-jetpack.php:245
115
  #, php-format
116
  msgid ""
117
  "Please rate <strong>Booster for WooCommerce</strong> %s on <a href=\"%s\" "
119
  "from Booster team!"
120
  msgstr ""
121
 
122
+ #: includes/admin/class-wc-settings-jetpack.php:314
123
  #: includes/class-wcj-admin-bar.php:140
124
  msgid "Alphabetically"
125
  msgstr ""
126
 
127
+ #: includes/admin/class-wc-settings-jetpack.php:315
128
  #: includes/class-wcj-admin-bar.php:144
129
  msgid "By Category"
130
  msgstr ""
131
 
132
+ #: includes/admin/class-wc-settings-jetpack.php:316
133
  #: includes/class-wcj-admin-bar.php:148
134
  msgid "Active"
135
  msgstr ""
136
 
137
+ #: includes/admin/class-wc-settings-jetpack.php:317
138
  #: includes/class-wcj-admin-bar.php:152
139
  msgid "Manage Settings"
140
  msgstr ""
141
 
142
+ #: includes/admin/class-wc-settings-jetpack.php:379
143
  #: includes/admin/wcj-modules-cats.php:14 includes/class-wcj-admin-bar.php:214
144
  #: includes/class-wcj-my-account.php:34
145
  msgid "Dashboard"
146
  msgstr ""
147
 
148
+ #: includes/admin/class-wc-settings-jetpack.php:426
149
  #, php-format
150
  msgid ""
151
  "Please note that current <em>%s</em> module is deprecated and will be removed "
152
  "in future updates. Please use <em>%s</em> module instead."
153
  msgstr ""
154
 
155
+ #: includes/admin/class-wc-settings-jetpack.php:431
156
  msgid "Module will be removed from the module's list as soon as you disable it."
157
  msgstr ""
158
 
159
+ #: includes/admin/class-wc-settings-jetpack.php:442
160
  #, php-format
161
  msgid ""
162
  "Please note that <em>%s</em> module is currently under development. Until "
164
  "be moved to paid plugin version."
165
  msgstr ""
166
 
167
+ #: includes/admin/class-wc-settings-jetpack.php:453
168
  #: includes/class-wcj-admin-bar.php:384
169
  #: includes/settings/wcj-settings-emails-verification.php:146
170
  #: includes/settings/wcj-settings-price-by-country.php:249
171
  msgid "WooCommerce"
172
  msgstr ""
173
 
174
+ #: includes/admin/class-wc-settings-jetpack.php:455
175
+ #: includes/admin/class-wc-settings-jetpack.php:662
176
  #: includes/class-wcj-admin-bar.php:168 includes/class-wcj-admin-bar.php:508
177
  #: includes/class-wcj-admin-bar.php:608 includes/core/class-wcj-admin.php:116
178
  msgid "Settings"
179
  msgstr ""
180
 
181
+ #: includes/admin/class-wc-settings-jetpack.php:507
182
  msgid ""
183
  "This section lets you export, import or reset all Booster's modules settings."
184
  msgstr ""
185
 
186
+ #: includes/admin/class-wc-settings-jetpack.php:531
187
  #: includes/class-wcj-export-import.php:26
188
  msgid "Export"
189
  msgstr ""
190
 
191
+ #: includes/admin/class-wc-settings-jetpack.php:532
192
  msgid "Export all Booster's options to a file."
193
  msgstr ""
194
 
195
+ #: includes/admin/class-wc-settings-jetpack.php:535
196
  #: includes/class-wcj-purchase-data.php:104
197
  msgid "Import"
198
  msgstr ""
199
 
200
+ #: includes/admin/class-wc-settings-jetpack.php:537
201
  msgid "Import all Booster's options from a file."
202
  msgstr ""
203
 
204
+ #: includes/admin/class-wc-settings-jetpack.php:541
205
  msgid ""
206
  "This will reset settings to defaults for all Booster modules. Are you sure?"
207
  msgstr ""
208
 
209
+ #: includes/admin/class-wc-settings-jetpack.php:542
210
  msgid "Reset"
211
  msgstr ""
212
 
213
+ #: includes/admin/class-wc-settings-jetpack.php:543
214
  msgid "Reset all Booster's options."
215
  msgstr ""
216
 
217
+ #: includes/admin/class-wc-settings-jetpack.php:547
218
  msgid "This will delete all Booster meta. Are you sure?"
219
  msgstr ""
220
 
221
+ #: includes/admin/class-wc-settings-jetpack.php:548
222
  msgid "Reset meta"
223
  msgstr ""
224
 
225
+ #: includes/admin/class-wc-settings-jetpack.php:549
226
  msgid "Reset all Booster's meta."
227
  msgstr ""
228
 
229
+ #: includes/admin/class-wc-settings-jetpack.php:587
230
  msgid "Version"
231
  msgstr ""
232
 
233
+ #: includes/admin/class-wc-settings-jetpack.php:612
234
+ #: includes/admin/class-wc-settings-jetpack.php:623
235
  msgid "Select All"
236
  msgstr ""
237
 
238
+ #: includes/admin/class-wc-settings-jetpack.php:615
239
+ #: includes/admin/class-wc-settings-jetpack.php:625
240
  #: includes/admin/class-wcj-tools.php:76
241
  msgid "Module"
242
  msgstr ""
243
 
244
+ #: includes/admin/class-wc-settings-jetpack.php:617
245
+ #: includes/admin/class-wc-settings-jetpack.php:628
246
  #: includes/admin/class-wcj-tools.php:77
247
  #: includes/export/class-wcj-fields-helper.php:293
248
  #: includes/gateways/class-wc-gateway-wcj-custom.php:61
254
  msgid "Description"
255
  msgstr ""
256
 
257
+ #: includes/admin/class-wc-settings-jetpack.php:664
258
  #: includes/class-wcj-admin-bar.php:172
259
+ #: includes/classes/class-wcj-module.php:929
260
  msgid "Documentation"
261
  msgstr ""
262
 
263
+ #: includes/admin/class-wc-settings-jetpack.php:675
264
  msgid "No active modules found."
265
  msgstr ""
266
 
267
+ #: includes/admin/class-wc-settings-jetpack.php:679
268
  msgid "Total Modules:"
269
  msgstr ""
270
 
271
+ #: includes/admin/class-wc-settings-jetpack.php:744
272
  msgid "Autoload Booster's Options"
273
  msgstr ""
274
 
275
+ #: includes/admin/class-wc-settings-jetpack.php:746
276
  msgid ""
277
  "Choose if you want Booster's options to be autoloaded when calling "
278
  "add_option. After saving this option, you need to Reset all Booster's "
279
  "settings. Leave default value (i.e. Enabled) if not sure."
280
  msgstr ""
281
 
282
+ #: includes/admin/class-wc-settings-jetpack.php:751
283
  msgid "Load Modules on Init Hook"
284
  msgstr ""
285
 
286
+ #: includes/admin/class-wc-settings-jetpack.php:753
287
  msgid "Choose if you want to load Booster Modules on Init hook."
288
  msgstr ""
289
 
290
+ #: includes/admin/class-wc-settings-jetpack.php:753
291
  msgid ""
292
  "It will load the locale appropriately if users change it from the profile "
293
  "page."
294
  msgstr ""
295
 
296
+ #: includes/admin/class-wc-settings-jetpack.php:758
297
  msgid "Use List Instead of Comma Separated Text for Products in Settings"
298
  msgstr ""
299
 
300
+ #: includes/admin/class-wc-settings-jetpack.php:760
301
+ #: includes/admin/class-wc-settings-jetpack.php:774
302
+ #: includes/admin/class-wc-settings-jetpack.php:783
303
  #, php-format
304
  msgid "Supported modules: %s."
305
  msgstr ""
306
 
307
+ #: includes/admin/class-wc-settings-jetpack.php:761
308
  #: includes/class-wcj-payment-gateways-per-category.php:26
309
  msgid "Gateways per Product or Category"
310
  msgstr ""
311
 
312
+ #: includes/admin/class-wc-settings-jetpack.php:762
313
  #: includes/class-wcj-global-discount.php:29
314
  #: includes/settings/wcj-settings-product-addons.php:254
315
  msgid "Global Discount"
316
  msgstr ""
317
 
318
+ #: includes/admin/class-wc-settings-jetpack.php:763
319
+ #: includes/admin/class-wc-settings-jetpack.php:775
320
+ #: includes/admin/class-wc-settings-jetpack.php:784
321
  #: includes/class-wcj-product-custom-info.php:24
322
  #: includes/functions/wcj-functions-general.php:449
323
  msgid "Product Info"
324
  msgstr ""
325
 
326
+ #: includes/admin/class-wc-settings-jetpack.php:764
327
  #: includes/admin/wcj-welcome-screen-content.php:72
328
  #: includes/class-wcj-product-input-fields.php:24
329
  #: includes/input-fields/class-wcj-product-input-fields-core.php:185
330
  msgid "Product Input Fields"
331
  msgstr ""
332
 
333
+ #: includes/admin/class-wc-settings-jetpack.php:765
334
  msgid "Products XML"
335
  msgstr ""
336
 
337
+ #: includes/admin/class-wc-settings-jetpack.php:766
338
  #: includes/class-wcj-related-products.php:38
339
  #: includes/settings/meta-box/wcj-settings-meta-box-related-products.php:30
340
  #: includes/settings/wcj-settings-free-price.php:20
341
  msgid "Related Products"
342
  msgstr ""
343
 
344
+ #: includes/admin/class-wc-settings-jetpack.php:772
345
  msgid ""
346
  "Use List Instead of Comma Separated Text for Products Categories in Settings"
347
  msgstr ""
348
 
349
+ #: includes/admin/class-wc-settings-jetpack.php:781
350
  msgid "Use List Instead of Comma Separated Text for Products Tags in Settings"
351
  msgstr ""
352
 
353
+ #: includes/admin/class-wc-settings-jetpack.php:809
354
  #: includes/core/class-wcj-admin.php:100
355
  msgid "Booster for WooCommerce"
356
  msgstr ""
5779
  msgid "Reset settings"
5780
  msgstr ""
5781
 
5782
+ #: includes/classes/class-wcj-module.php:933
5783
  msgid "Module Options"
5784
  msgstr ""
5785
 
5786
+ #: includes/classes/class-wcj-module.php:940
5787
  msgid "Enable Module"
5788
  msgstr ""
5789
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: woocommerce customization, woocommerce bundle, woocommerce product addon,
4
  Requires at least: 4.4
5
  Tested up to: 5.7.2
6
  Requires PHP: 5.6
7
- Stable tag: 5.4.1
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -184,6 +184,9 @@ To unlock all Booster for WooCommerce features, please install additional [Boost
184
  * *Empty Cart Button* - Add (and customize) "Empty Cart" button to the cart and checkout pages. Customize empty cart button text (Plus). Different button positions on the cart page (Plus).
185
  * *Mini Cart Custom Info* - Add custom info to the mini cart widget (1 block allowed in free version).
186
  * *URL Coupons* - WooCommerce URL coupons. Redirect after coupon has been applied (Plus).
 
 
 
187
 
188
  **Payment Gateways**
189
 
@@ -252,14 +255,22 @@ To unlock all Booster for WooCommerce features, please install additional [Boost
252
  * We are open to your suggestions and feedback - thank you for using or trying out one of our plugins!
253
  * If you have any ideas how to upgrade the plugin to make it better, or if you have ideas about the features that are missing from our plugin, please [fill the form](https://booster.io/submit-idea/).
254
  * For support please visit the [Plugin Support Forum](https://wordpress.org/support/plugin/woocommerce-jetpack/).
 
255
  == Changelog ==
 
 
 
 
 
 
 
 
256
 
257
- = 5.4.1-dev 27/05/2021 =
258
  * PHP 8.0.6 tested
259
  * WooCommerce 5.3.0 tested
260
  * Wordpress 5.7.2 tested
261
 
262
-
263
  = 5.4.0 29/04/2021 =
264
  * Dev - Add Tooltip & Suggestion for fields
265
  * Dev - Shortcodes - Orders - Add `[Wcj_order_shipping_price_without_html_custom]` shortcode.
4
  Requires at least: 4.4
5
  Tested up to: 5.7.2
6
  Requires PHP: 5.6
7
+ Stable tag: 5.4.2
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
184
  * *Empty Cart Button* - Add (and customize) "Empty Cart" button to the cart and checkout pages. Customize empty cart button text (Plus). Different button positions on the cart page (Plus).
185
  * *Mini Cart Custom Info* - Add custom info to the mini cart widget (1 block allowed in free version).
186
  * *URL Coupons* - WooCommerce URL coupons. Redirect after coupon has been applied (Plus).
187
+ * *Frequently Bought Together* - Add Frequently Bought Together section with suggest items usually bought together with the product watched by your customer. (Plus only)
188
+ * *One Page Checkout* - One Page Checkout make easier for customers to buy from custom checkout pages by displaying both product selection and checkout forms on a single page. (Plus only)
189
+
190
 
191
  **Payment Gateways**
192
 
255
  * We are open to your suggestions and feedback - thank you for using or trying out one of our plugins!
256
  * If you have any ideas how to upgrade the plugin to make it better, or if you have ideas about the features that are missing from our plugin, please [fill the form](https://booster.io/submit-idea/).
257
  * For support please visit the [Plugin Support Forum](https://wordpress.org/support/plugin/woocommerce-jetpack/).
258
+
259
  == Changelog ==
260
+ = 5.4.2 24/06/2021 =
261
+ * Fix - CART & CHECKOUT - Checkout Custom Fields - Fixed duplicate meta key issue.
262
+ * Fix - SHIPPING & ORDERS - Order Numbers - Fixed hashid dependency issue.
263
+ * Fix - PRODUCTS - SKU - Fixed hashid dependency issue.
264
+ * Feature - CONTACT SUPPORT - Quick link to reach us for technical support or suggest an idea.
265
+ * PHP 8.0.6 tested
266
+ * WooCommerce 5.4.1 tested
267
+ * Wordpress 5.7.2 tested
268
 
269
+ = 5.4.1 27/05/2021 =
270
  * PHP 8.0.6 tested
271
  * WooCommerce 5.3.0 tested
272
  * Wordpress 5.7.2 tested
273
 
 
274
  = 5.4.0 29/04/2021 =
275
  * Dev - Add Tooltip & Suggestion for fields
276
  * Dev - Shortcodes - Orders - Add `[Wcj_order_shipping_price_without_html_custom]` shortcode.
woocommerce-jetpack.php CHANGED
@@ -3,13 +3,13 @@
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: 5.4.1
7
  Author: Pluggabl LLC
8
  Author URI: https://booster.io
9
  Text Domain: woocommerce-jetpack
10
  Domain Path: /langs
11
  Copyright: © 2020 Pluggabl LLC.
12
- WC tested up to: 5.3.0
13
  License: GNU General Public License v3.0
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
  */
@@ -57,7 +57,7 @@ final class WC_Jetpack {
57
  * @var string
58
  * @since 2.4.7
59
  */
60
- public $version = '5.4.1';
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: 5.4.2
7
  Author: Pluggabl LLC
8
  Author URI: https://booster.io
9
  Text Domain: woocommerce-jetpack
10
  Domain Path: /langs
11
  Copyright: © 2020 Pluggabl LLC.
12
+ WC tested up to: 5.4.1
13
  License: GNU General Public License v3.0
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
  */
57
  * @var string
58
  * @since 2.4.7
59
  */
60
+ public $version = '5.4.2';
61
 
62
  /**
63
  * @var WC_Jetpack The single instance of the class