Booster for WooCommerce - Version 5.4.1

Version Description

Download this release

Release Info

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

Code changes from version 5.4.0 to 5.4.1

includes/admin/class-wcj-welcome.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Booster getting started
4
  *
5
- * @version 5.3.6
6
  * @author Pluggabl LLC.
7
  */
8
 
@@ -30,8 +30,8 @@ class WCJ_Welcome {
30
  add_action( 'admin_head', array( $this, 'wcj_hide_menu' ) );
31
 
32
  if(isset($_POST['submit_email_to_klaviyo']) && $_POST['user_email'] != "" ){
33
- $API_KEY = "pk_d60b7aac8e2d8cf8cfada30a0d13bade1f";
34
- $list_id = "Y7yRgG";
35
  $email = $_POST['user_email'];
36
  $check_subscribe = $this->check_email_exist_in_klaviyo_subscribe_list( $list_id, $email );
37
  // Subscribe to List
@@ -53,7 +53,7 @@ class WCJ_Welcome {
53
  /**
54
  * wcj_register_welcome_page
55
  *
56
- * @version 5.3.6
57
  */
58
  public function wcj_register_welcome_page() {
59
  add_dashboard_page(
@@ -68,7 +68,7 @@ class WCJ_Welcome {
68
  /**
69
  * wcj_redirect_to_getting_started_msg
70
  *
71
- * @version 5.3.6
72
  */
73
  public function wcj_redirect_to_getting_started_msg() {
74
  $msg = get_transient( '_wcj_redirect_to_getting_started_msg' );
@@ -81,7 +81,7 @@ class WCJ_Welcome {
81
  /**
82
  * wcj_hide_menu
83
  *
84
- * @version 5.3.6
85
  */
86
  public function wcj_hide_menu() {
87
  remove_submenu_page( 'index.php', 'jetpack-getting-started' );
@@ -90,7 +90,7 @@ class WCJ_Welcome {
90
  /**
91
  * wcj_redirect_to_getting_started
92
  *
93
- * @version 5.3.6
94
  */
95
  public function wcj_redirect_to_getting_started() {
96
  if ( ! get_transient( '_wcj_activation_redirect' ) || isset( $_GET['wcj-redirect'] ) ) {
@@ -107,7 +107,7 @@ class WCJ_Welcome {
107
  /**
108
  * wcj_welcome_screen_content
109
  *
110
- * @version 5.3.6
111
  */
112
  public function wcj_welcome_screen_content() {
113
  require_once( WCJ_PLUGIN_PATH . '/includes/admin/wcj-welcome-screen-content.php' );
@@ -116,10 +116,10 @@ class WCJ_Welcome {
116
  /**
117
  * check_email_exist_in_klaviyo_subscribe_list
118
  *
119
- * @version 5.3.6
120
  */
121
  public function check_email_exist_in_klaviyo_subscribe_list($list_id,$email){
122
- $API_KEY = "pk_d60b7aac8e2d8cf8cfada30a0d13bade1f";
123
  $data_to_post = "?api_key=".$API_KEY."&emails=".$email;
124
  $URL = "https://a.klaviyo.com/api/v2/list/".$list_id."/subscribe".$data_to_post;
125
  $curlSession = curl_init();
@@ -135,10 +135,10 @@ class WCJ_Welcome {
135
  /**
136
  * add_email_to_klaviyo_subscribe_list
137
  *
138
- * @version 5.3.6
139
  */
140
  public function add_email_to_klaviyo_subscribe_list($list_id,$email){
141
- $API_KEY = "pk_d60b7aac8e2d8cf8cfada30a0d13bade1f";
142
  $URL = "https://a.klaviyo.com/api/v2/list/".$list_id."/subscribe";
143
  $subscribe_to_plan = array(
144
  "api_key" => $API_KEY,
2
  /**
3
  * Booster getting started
4
  *
5
+ * @version 5.4.1
6
  * @author Pluggabl LLC.
7
  */
8
 
30
  add_action( 'admin_head', array( $this, 'wcj_hide_menu' ) );
31
 
32
  if(isset($_POST['submit_email_to_klaviyo']) && $_POST['user_email'] != "" ){
33
+ $API_KEY = "pk_6e2f40d8614c17a121a4d2c567d2bd72d4";
34
+ $list_id = "RQJNvK";
35
  $email = $_POST['user_email'];
36
  $check_subscribe = $this->check_email_exist_in_klaviyo_subscribe_list( $list_id, $email );
37
  // Subscribe to List
53
  /**
54
  * wcj_register_welcome_page
55
  *
56
+ * @version 5.4.1
57
  */
58
  public function wcj_register_welcome_page() {
59
  add_dashboard_page(
68
  /**
69
  * wcj_redirect_to_getting_started_msg
70
  *
71
+ * @version 5.4.1
72
  */
73
  public function wcj_redirect_to_getting_started_msg() {
74
  $msg = get_transient( '_wcj_redirect_to_getting_started_msg' );
81
  /**
82
  * wcj_hide_menu
83
  *
84
+ * @version 5.4.1
85
  */
86
  public function wcj_hide_menu() {
87
  remove_submenu_page( 'index.php', 'jetpack-getting-started' );
90
  /**
91
  * wcj_redirect_to_getting_started
92
  *
93
+ * @version 5.4.1
94
  */
95
  public function wcj_redirect_to_getting_started() {
96
  if ( ! get_transient( '_wcj_activation_redirect' ) || isset( $_GET['wcj-redirect'] ) ) {
107
  /**
108
  * wcj_welcome_screen_content
109
  *
110
+ * @version 5.4.1
111
  */
112
  public function wcj_welcome_screen_content() {
113
  require_once( WCJ_PLUGIN_PATH . '/includes/admin/wcj-welcome-screen-content.php' );
116
  /**
117
  * check_email_exist_in_klaviyo_subscribe_list
118
  *
119
+ * @version 5.4.1
120
  */
121
  public function check_email_exist_in_klaviyo_subscribe_list($list_id,$email){
122
+ $API_KEY = "pk_6e2f40d8614c17a121a4d2c567d2bd72d4";
123
  $data_to_post = "?api_key=".$API_KEY."&emails=".$email;
124
  $URL = "https://a.klaviyo.com/api/v2/list/".$list_id."/subscribe".$data_to_post;
125
  $curlSession = curl_init();
135
  /**
136
  * add_email_to_klaviyo_subscribe_list
137
  *
138
+ * @version 5.4.1
139
  */
140
  public function add_email_to_klaviyo_subscribe_list($list_id,$email){
141
+ $API_KEY = "pk_6e2f40d8614c17a121a4d2c567d2bd72d4";
142
  $URL = "https://a.klaviyo.com/api/v2/list/".$list_id."/subscribe";
143
  $subscribe_to_plan = array(
144
  "api_key" => $API_KEY,
includes/classes/class-wcj-module.php CHANGED
@@ -913,7 +913,14 @@ class WCJ_Module {
913
  $module_desc = '<div style="padding: 15px; background-color: #ffffff; color: #000000;">' . $this->get_extra_desc() . '</div>';
914
  }
915
  if ( ! isset( $this->link ) && isset( $this->link_slug ) && '' != $this->link_slug ) {
916
- $this->link = 'https://booster.io/features/' . $this->link_slug . '/';
 
 
 
 
 
 
 
917
  }
918
  $the_link = '';
919
  if ( isset( $this->link ) && '' != $this->link ) {
913
  $module_desc = '<div style="padding: 15px; background-color: #ffffff; color: #000000;">' . $this->get_extra_desc() . '</div>';
914
  }
915
  if ( ! isset( $this->link ) && isset( $this->link_slug ) && '' != $this->link_slug ) {
916
+ if($this->link_slug == "woocommerce-pdf-invoicing-and-packing-slips")
917
+ {
918
+ $this->link = 'https://booster.io/' . $this->link_slug . '/';
919
+ }
920
+ else
921
+ {
922
+ $this->link = 'https://booster.io/features/' . $this->link_slug . '/';
923
+ }
924
  }
925
  $the_link = '';
926
  if ( isset( $this->link ) && '' != $this->link ) {
langs/woocommerce-jetpack.pot CHANGED
@@ -324,6 +324,7 @@ msgid "Product Info"
324
  msgstr ""
325
 
326
  #: includes/admin/class-wc-settings-jetpack.php:716
 
327
  #: includes/class-wcj-product-input-fields.php:24
328
  #: includes/input-fields/class-wcj-product-input-fields-core.php:185
329
  msgid "Product Input Fields"
@@ -430,6 +431,11 @@ msgstr ""
430
  msgid "Status"
431
  msgstr ""
432
 
 
 
 
 
 
433
  #: includes/admin/wcj-modules-cats.php:15
434
  msgid ""
435
  "This dashboard lets you enable/disable any Booster's module. Each checkbox "
@@ -473,17 +479,18 @@ msgid ""
473
  "Listings, Product Tabs and more."
474
  msgstr ""
475
 
476
- #: includes/admin/wcj-modules-cats.php:96
477
  msgid "Cart & Checkout"
478
  msgstr ""
479
 
480
- #: includes/admin/wcj-modules-cats.php:97
481
  msgid ""
482
  "Cart and Checkout Customization, Empty Cart Button, Mini Cart, Coupons and "
483
  "more."
484
  msgstr ""
485
 
486
- #: includes/admin/wcj-modules-cats.php:117
 
487
  #: includes/settings/wcj-settings-payment-gateways-by-country.php:55
488
  #: includes/settings/wcj-settings-payment-gateways-by-currency.php:14
489
  #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:37
@@ -494,38 +501,213 @@ msgstr ""
494
  msgid "Payment Gateways"
495
  msgstr ""
496
 
497
- #: includes/admin/wcj-modules-cats.php:118
498
  msgid ""
499
  "Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and "
500
  "more."
501
  msgstr ""
502
 
503
- #: includes/admin/wcj-modules-cats.php:134
504
  msgid "Shipping & Orders"
505
  msgstr ""
506
 
507
- #: includes/admin/wcj-modules-cats.php:135
508
  msgid ""
509
  "Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping "
510
  "Methods and more."
511
  msgstr ""
512
 
513
- #: includes/admin/wcj-modules-cats.php:162
514
  msgid "PDF Invoicing & Packing Slips"
515
  msgstr ""
516
 
517
- #: includes/admin/wcj-modules-cats.php:163
518
  msgid "PDF Documents"
519
  msgstr ""
520
 
521
- #: includes/admin/wcj-modules-cats.php:179
522
  msgid "Emails & Misc."
523
  msgstr ""
524
 
525
- #: includes/admin/wcj-modules-cats.php:180
526
  msgid "Emails, Reports, Export, Admin Tools, General Options and more."
527
  msgstr ""
528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
529
  #: includes/class-wcj-add-to-cart-button-visibility.php:26
530
  msgid "Add to Cart Button Visibility"
531
  msgstr ""
@@ -1153,11 +1335,8 @@ msgid "Add fees to WooCommerce cart & checkout."
1153
  msgstr ""
1154
 
1155
  #: includes/class-wcj-checkout-fees.php:232
1156
- #: includes/class-wcj-product-extra-fees.php:129
1157
  #: includes/settings/wcj-settings-checkout-fees.php:41
1158
  #: includes/settings/wcj-settings-checkout-fees.php:62
1159
- #: includes/settings/wcj-settings-product-extra-fees.php:45
1160
- #: includes/settings/wcj-settings-product-extra-fees.php:59
1161
  msgid "Fee"
1162
  msgstr ""
1163
 
@@ -3399,8 +3578,6 @@ msgstr ""
3399
  #: includes/settings/wcj-settings-product-by-time.php:21
3400
  #: includes/settings/wcj-settings-product-by-time.php:53
3401
  #: includes/settings/wcj-settings-product-by-user.php:107
3402
- #: includes/settings/wcj-settings-product-extra-fees.php:51
3403
- #: includes/settings/wcj-settings-product-extra-fees.php:81
3404
  #: includes/settings/wcj-settings-product-info.php:35
3405
  #: includes/settings/wcj-settings-product-info.php:68
3406
  #: includes/settings/wcj-settings-product-input-fields.php:24
@@ -3578,10 +3755,6 @@ msgstr ""
3578
  msgid "View cart"
3579
  msgstr ""
3580
 
3581
- #: includes/class-wcj-product-addons.php:30
3582
- msgid "Product Addons"
3583
- msgstr ""
3584
-
3585
  #: includes/class-wcj-product-addons.php:31
3586
  msgid ""
3587
  "Add (paid/free/discount) addons to products (1 addon allowed in free version)."
@@ -3742,7 +3915,6 @@ msgstr ""
3742
  #: includes/settings/wcj-settings-export.php:171
3743
  #: includes/settings/wcj-settings-export.php:250
3744
  #: includes/settings/wcj-settings-global-discount.php:74
3745
- #: includes/settings/wcj-settings-product-extra-fees.php:63
3746
  msgid "Value"
3747
  msgstr ""
3748
 
@@ -4123,7 +4295,6 @@ msgstr ""
4123
  #: includes/settings/wcj-settings-product-add-to-cart.php:300
4124
  #: includes/settings/wcj-settings-product-addons.php:92
4125
  #: includes/settings/wcj-settings-product-by-user.php:167
4126
- #: includes/settings/wcj-settings-product-extra-fees.php:57
4127
  #: includes/settings/wcj-settings-product-tabs.php:72
4128
  #: includes/settings/wcj-settings-product-tabs.php:389
4129
  #: includes/settings/wcj-settings-product-tabs.php:410
@@ -4236,16 +4407,6 @@ msgid ""
4236
  "to the selection drop box on frontend."
4237
  msgstr ""
4238
 
4239
- #: includes/class-wcj-product-extra-fees.php:22
4240
- msgid "Product Extra Fees"
4241
- msgstr ""
4242
-
4243
- #: includes/class-wcj-product-extra-fees.php:23
4244
- msgid ""
4245
- "Add product extra fees title, price, and set conditional product fees rules "
4246
- "as per your requirement."
4247
- msgstr ""
4248
-
4249
  #: includes/class-wcj-product-images.php:25
4250
  msgid "Product Images"
4251
  msgstr ""
@@ -5722,7 +5883,6 @@ msgstr ""
5722
  #: includes/settings/wcj-settings-admin-products-list.php:75
5723
  #: includes/settings/wcj-settings-checkout-custom-fields.php:121
5724
  #: includes/settings/wcj-settings-checkout-fees.php:46
5725
- #: includes/settings/wcj-settings-product-extra-fees.php:50
5726
  #: includes/shipping/class-wc-shipping-wcj-custom.php:101
5727
  msgid "Enable/Disable"
5728
  msgstr ""
@@ -6206,7 +6366,6 @@ msgstr ""
6206
  #: includes/settings/wcj-settings-export.php:240
6207
  #: includes/settings/wcj-settings-global-discount.php:63
6208
  #: includes/settings/wcj-settings-product-addons.php:80
6209
- #: includes/settings/wcj-settings-product-extra-fees.php:70
6210
  #: includes/settings/wcj-settings-purchase-data.php:84
6211
  #: includes/settings/wcj-settings-shipping-options.php:77
6212
  #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:199
@@ -8452,95 +8611,6 @@ msgstr ""
8452
  msgid "Templates"
8453
  msgstr ""
8454
 
8455
- #: includes/plus/class-wcj-plus-site-key-manager.php:79
8456
- #, php-format
8457
- msgid "Status last checked at %s."
8458
- msgstr ""
8459
-
8460
- #: includes/plus/class-wcj-plus-site-key-manager.php:80
8461
- #, php-format
8462
- msgid "Cron scheduled at %s."
8463
- msgstr ""
8464
-
8465
- #: includes/plus/class-wcj-plus-site-key-manager.php:81
8466
- #, php-format
8467
- msgid "Cron last run at %s."
8468
- msgstr ""
8469
-
8470
- #: includes/plus/class-wcj-plus-site-key-manager.php:122
8471
- msgid "No key set."
8472
- msgstr ""
8473
-
8474
- #: includes/plus/class-wcj-plus-site-key-manager.php:123
8475
- #, php-format
8476
- msgid ""
8477
- "To get the key, please visit <a target=\"_blank\" href=\"%s\">your account "
8478
- "page at %s</a>."
8479
- msgstr ""
8480
-
8481
- #: includes/plus/class-wcj-plus-site-key-manager.php:126
8482
- #, php-format
8483
- msgid "No response from server. Please <a href=\"%s\">try again</a> later."
8484
- msgstr ""
8485
-
8486
- #: includes/plus/class-wcj-plus-site-key-manager.php:128
8487
- #, php-format
8488
- msgid "Server error. Please <a href=\"%s\">try again</a> later."
8489
- msgstr ""
8490
-
8491
- #: includes/plus/class-wcj-plus-site-key-section.php:46
8492
- msgid "Manage site key"
8493
- msgstr ""
8494
-
8495
- #: includes/plus/class-wcj-plus-site-key-section.php:59
8496
- #: includes/plus/class-wcj-plus-site-key-section.php:73
8497
- #: includes/plus/class-wcj-plus-site-key-section.php:81
8498
- msgid "Site Key"
8499
- msgstr ""
8500
-
8501
- #: includes/plus/class-wcj-plus-site-key-section.php:74
8502
- msgid ""
8503
- "This section lets you manage site key for paid Booster Plus for WooCommerce "
8504
- "plugin."
8505
- msgstr ""
8506
-
8507
- #: includes/plus/class-wcj-plus-site-key-section.php:75
8508
- #, php-format
8509
- msgid ""
8510
- "To get the key, please go to <a target=\"_blank\" href=\"%s\">your account "
8511
- "page at %s</a>."
8512
- msgstr ""
8513
-
8514
- #: includes/plus/class-wcj-plus-site-key-section.php:78
8515
- msgid "Check site key now"
8516
- msgstr ""
8517
-
8518
- #: includes/plus/class-wcj-plus-site-key-section.php:82
8519
- #, php-format
8520
- msgid "Site URL: %s"
8521
- msgstr ""
8522
-
8523
- #: includes/plus/lib/plugin-update-checker/github-checker.php:119
8524
- msgid "There is no changelog available."
8525
- msgstr ""
8526
-
8527
- #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:763
8528
- msgid "Check for updates"
8529
- msgstr ""
8530
-
8531
- #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:807
8532
- msgid "This plugin is up to date."
8533
- msgstr ""
8534
-
8535
- #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:809
8536
- msgid "A new version of this plugin is available."
8537
- msgstr ""
8538
-
8539
- #: includes/plus/lib/plugin-update-checker/plugin-update-checker.php:811
8540
- #, php-format
8541
- msgid "Unknown update checker status \"%s\""
8542
- msgstr ""
8543
-
8544
  #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:34
8545
  msgid "Country groups successfully generated."
8546
  msgstr ""
@@ -9402,7 +9472,6 @@ msgstr ""
9402
  #: includes/settings/wcj-settings-checkout-fees.php:72
9403
  #: includes/settings/wcj-settings-global-discount.php:69
9404
  #: includes/settings/wcj-settings-payment-gateways-fees.php:57
9405
- #: includes/settings/wcj-settings-product-extra-fees.php:76
9406
  #: includes/settings/wcj-settings-purchase-data.php:89
9407
  #: includes/settings/wcj-settings-wholesale-price.php:89
9408
  msgid "Percent"
@@ -9413,7 +9482,6 @@ msgstr ""
9413
  #: includes/settings/wcj-settings-global-discount.php:70
9414
  #: includes/settings/wcj-settings-payment-gateways-fees.php:56
9415
  #: includes/settings/wcj-settings-price-by-user-role.php:31
9416
- #: includes/settings/wcj-settings-product-extra-fees.php:75
9417
  #: includes/settings/wcj-settings-purchase-data.php:88
9418
  #: includes/settings/wcj-settings-wholesale-price.php:90
9419
  msgid "Fixed"
@@ -10383,29 +10451,29 @@ msgstr ""
10383
  msgid "Wide Row"
10384
  msgstr ""
10385
 
10386
- #: includes/settings/wcj-settings-checkout-core-fields.php:141
10387
  msgid "priority (i.e. order)"
10388
  msgstr ""
10389
 
10390
- #: includes/settings/wcj-settings-checkout-core-fields.php:142
10391
  msgid "Leave zero for WooCommerce defaults."
10392
  msgstr ""
10393
 
10394
- #: includes/settings/wcj-settings-checkout-core-fields.php:150
10395
  msgid "include product categories"
10396
  msgstr ""
10397
 
10398
- #: includes/settings/wcj-settings-checkout-core-fields.php:151
10399
  msgid ""
10400
  "If not empty - selected categories products must be in cart for current field "
10401
  "to appear."
10402
  msgstr ""
10403
 
10404
- #: includes/settings/wcj-settings-checkout-core-fields.php:162
10405
  msgid "exclude product categories"
10406
  msgstr ""
10407
 
10408
- #: includes/settings/wcj-settings-checkout-core-fields.php:163
10409
  msgid ""
10410
  "If not empty - current field is hidden, if selected categories products are "
10411
  "in cart."
@@ -11042,63 +11110,51 @@ msgid "Fields that need to be changed in order to update checkout."
11042
  msgstr ""
11043
 
11044
  #: includes/settings/wcj-settings-checkout-fees.php:14
11045
- #: includes/settings/wcj-settings-product-extra-fees.php:18
11046
  msgid "Fees"
11047
  msgstr ""
11048
 
11049
  #: includes/settings/wcj-settings-checkout-fees.php:19
11050
- #: includes/settings/wcj-settings-product-extra-fees.php:23
11051
  msgid "Total Fees"
11052
  msgstr ""
11053
 
11054
  #: includes/settings/wcj-settings-checkout-fees.php:53
11055
  #: includes/settings/wcj-settings-payment-gateways-fees.php:101
11056
- #: includes/settings/wcj-settings-product-extra-fees.php:80
11057
  msgid "Taxable"
11058
  msgstr ""
11059
 
11060
  #: includes/settings/wcj-settings-checkout-fees.php:83
11061
- #: includes/settings/wcj-settings-product-extra-fees.php:87
11062
  msgid "Cart Minimum Quantity"
11063
  msgstr ""
11064
 
11065
  #: includes/settings/wcj-settings-checkout-fees.php:84
11066
- #: includes/settings/wcj-settings-product-extra-fees.php:88
11067
  msgid "Minimum amount of items in cart."
11068
  msgstr ""
11069
 
11070
  #: includes/settings/wcj-settings-checkout-fees.php:91
11071
- #: includes/settings/wcj-settings-product-extra-fees.php:95
11072
  msgid "Cart Maximum Quantity"
11073
  msgstr ""
11074
 
11075
  #: includes/settings/wcj-settings-checkout-fees.php:92
11076
- #: includes/settings/wcj-settings-product-extra-fees.php:96
11077
  msgid "Maximum amount of items in cart."
11078
  msgstr ""
11079
 
11080
  #: includes/settings/wcj-settings-checkout-fees.php:92
11081
- #: includes/settings/wcj-settings-product-extra-fees.php:96
11082
  msgid "Zero or empty values will not be considered"
11083
  msgstr ""
11084
 
11085
  #: includes/settings/wcj-settings-checkout-fees.php:98
11086
- #: includes/settings/wcj-settings-product-extra-fees.php:102
11087
  msgid "Cart Minimum Total"
11088
  msgstr ""
11089
 
11090
  #: includes/settings/wcj-settings-checkout-fees.php:99
11091
- #: includes/settings/wcj-settings-product-extra-fees.php:103
11092
  msgid "Minimum total amount in cart."
11093
  msgstr ""
11094
 
11095
  #: includes/settings/wcj-settings-checkout-fees.php:107
11096
- #: includes/settings/wcj-settings-product-extra-fees.php:111
11097
  msgid "Cart Maximum Total"
11098
  msgstr ""
11099
 
11100
  #: includes/settings/wcj-settings-checkout-fees.php:108
11101
- #: includes/settings/wcj-settings-product-extra-fees.php:112
11102
  msgid "Maximum total amount in cart."
11103
  msgstr ""
11104
 
@@ -11129,17 +11185,14 @@ msgstr ""
11129
  #: includes/settings/wcj-settings-checkout-fees.php:134
11130
  #: includes/settings/wcj-settings-product-add-to-cart.php:297
11131
  #: includes/settings/wcj-settings-product-add-to-cart.php:333
11132
- #: includes/settings/wcj-settings-product-extra-fees.php:182
11133
  msgid "Priority"
11134
  msgstr ""
11135
 
11136
  #: includes/settings/wcj-settings-checkout-fees.php:135
11137
- #: includes/settings/wcj-settings-product-extra-fees.php:183
11138
  msgid "The higher the number the higher the priority."
11139
  msgstr ""
11140
 
11141
  #: includes/settings/wcj-settings-checkout-fees.php:135
11142
- #: includes/settings/wcj-settings-product-extra-fees.php:183
11143
  msgid "Will mostly make sense for overlapping."
11144
  msgstr ""
11145
 
@@ -15132,7 +15185,6 @@ msgstr ""
15132
 
15133
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:49
15134
  #: includes/settings/wcj-settings-price-labels.php:125
15135
- #: includes/settings/wcj-settings-product-extra-fees.php:137
15136
  #: includes/settings/wcj-settings-product-input-fields.php:113
15137
  msgid "Product Categories - Include"
15138
  msgstr ""
@@ -15145,7 +15197,6 @@ msgstr ""
15145
 
15146
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:60
15147
  #: includes/settings/wcj-settings-price-labels.php:134
15148
- #: includes/settings/wcj-settings-product-extra-fees.php:146
15149
  #: includes/settings/wcj-settings-product-input-fields.php:124
15150
  msgid "Product Categories - Exclude"
15151
  msgstr ""
@@ -15158,7 +15209,6 @@ msgstr ""
15158
 
15159
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:72
15160
  #: includes/settings/wcj-settings-price-labels.php:107
15161
- #: includes/settings/wcj-settings-product-extra-fees.php:119
15162
  #: includes/settings/wcj-settings-product-input-fields.php:158
15163
  msgid "Products - Include"
15164
  msgstr ""
@@ -15171,7 +15221,6 @@ msgstr ""
15171
 
15172
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:85
15173
  #: includes/settings/wcj-settings-price-labels.php:116
15174
- #: includes/settings/wcj-settings-product-extra-fees.php:128
15175
  #: includes/settings/wcj-settings-product-input-fields.php:170
15176
  msgid "Products - Exclude"
15177
  msgstr ""
@@ -17220,13 +17269,6 @@ msgstr ""
17220
  #: includes/settings/wcj-settings-product-custom-info.php:155
17221
  #: includes/settings/wcj-settings-product-custom-info.php:163
17222
  #: includes/settings/wcj-settings-product-custom-info.php:171
17223
- #: includes/settings/wcj-settings-product-extra-fees.php:120
17224
- #: includes/settings/wcj-settings-product-extra-fees.php:129
17225
- #: includes/settings/wcj-settings-product-extra-fees.php:138
17226
- #: includes/settings/wcj-settings-product-extra-fees.php:147
17227
- #: includes/settings/wcj-settings-product-extra-fees.php:156
17228
- #: includes/settings/wcj-settings-product-extra-fees.php:165
17229
- #: includes/settings/wcj-settings-product-extra-fees.php:174
17230
  msgid "Leave blank to disable the option."
17231
  msgstr ""
17232
 
@@ -17268,20 +17310,6 @@ msgstr ""
17268
  msgid "E.g.: %s."
17269
  msgstr ""
17270
 
17271
- #: includes/settings/wcj-settings-product-extra-fees.php:155
17272
- #: includes/settings/wcj-settings-product-input-fields.php:135
17273
- msgid "Product Tags - Include"
17274
- msgstr ""
17275
-
17276
- #: includes/settings/wcj-settings-product-extra-fees.php:164
17277
- #: includes/settings/wcj-settings-product-input-fields.php:146
17278
- msgid "Product Tags - Exclude"
17279
- msgstr ""
17280
-
17281
- #: includes/settings/wcj-settings-product-extra-fees.php:173
17282
- msgid "Enable by User Role"
17283
- msgstr ""
17284
-
17285
  #: includes/settings/wcj-settings-product-images.php:14
17286
  msgid "Product Image and Thumbnails"
17287
  msgstr ""
@@ -17519,10 +17547,18 @@ msgstr ""
17519
  msgid "Product categories to exclude."
17520
  msgstr ""
17521
 
 
 
 
 
17522
  #: includes/settings/wcj-settings-product-input-fields.php:136
17523
  msgid "Product tags to include."
17524
  msgstr ""
17525
 
 
 
 
 
17526
  #: includes/settings/wcj-settings-product-input-fields.php:147
17527
  msgid "Product tags to exclude."
17528
  msgstr ""
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"
431
  msgid "Status"
432
  msgstr ""
433
 
434
+ #: includes/admin/class-wcj-welcome.php:60
435
+ #: includes/admin/class-wcj-welcome.php:61
436
+ msgid "Welcome to Booster"
437
+ msgstr ""
438
+
439
  #: includes/admin/wcj-modules-cats.php:15
440
  msgid ""
441
  "This dashboard lets you enable/disable any Booster's module. Each checkbox "
479
  "Listings, Product Tabs and more."
480
  msgstr ""
481
 
482
+ #: includes/admin/wcj-modules-cats.php:95
483
  msgid "Cart & Checkout"
484
  msgstr ""
485
 
486
+ #: includes/admin/wcj-modules-cats.php:96
487
  msgid ""
488
  "Cart and Checkout Customization, Empty Cart Button, Mini Cart, Coupons and "
489
  "more."
490
  msgstr ""
491
 
492
+ #: includes/admin/wcj-modules-cats.php:116
493
+ #: includes/admin/wcj-welcome-screen-content.php:99
494
  #: includes/settings/wcj-settings-payment-gateways-by-country.php:55
495
  #: includes/settings/wcj-settings-payment-gateways-by-currency.php:14
496
  #: includes/settings/wcj-settings-payment-gateways-by-shipping.php:37
501
  msgid "Payment Gateways"
502
  msgstr ""
503
 
504
+ #: includes/admin/wcj-modules-cats.php:117
505
  msgid ""
506
  "Custom Payment Gateways, Gateways Currency, Gateways Fees and Discounts and "
507
  "more."
508
  msgstr ""
509
 
510
+ #: includes/admin/wcj-modules-cats.php:133
511
  msgid "Shipping & Orders"
512
  msgstr ""
513
 
514
+ #: includes/admin/wcj-modules-cats.php:134
515
  msgid ""
516
  "Order Custom Statuses, Order Minimum Amount, Order Numbers, Custom Shipping "
517
  "Methods and more."
518
  msgstr ""
519
 
520
+ #: includes/admin/wcj-modules-cats.php:161
521
  msgid "PDF Invoicing & Packing Slips"
522
  msgstr ""
523
 
524
+ #: includes/admin/wcj-modules-cats.php:162
525
  msgid "PDF Documents"
526
  msgstr ""
527
 
528
+ #: includes/admin/wcj-modules-cats.php:178
529
  msgid "Emails & Misc."
530
  msgstr ""
531
 
532
+ #: includes/admin/wcj-modules-cats.php:179
533
  msgid "Emails, Reports, Export, Admin Tools, General Options and more."
534
  msgstr ""
535
 
536
+ #: includes/admin/wcj-welcome-screen-content.php:9
537
+ msgid "Welcome to booster."
538
+ msgstr ""
539
+
540
+ #: includes/admin/wcj-welcome-screen-content.php:10
541
+ msgid ""
542
+ "Thank you for choosing Booster - Supercharge your WooCommerce site with these "
543
+ "awesome powerful features. More than 100 modules. All in one WooCommerce "
544
+ "plugin."
545
+ msgstr ""
546
+
547
+ #: includes/admin/wcj-welcome-screen-content.php:11
548
+ msgid "Launch Booster Settings"
549
+ msgstr ""
550
+
551
+ #: includes/admin/wcj-welcome-screen-content.php:17
552
+ msgid "Get Booster Plus Now."
553
+ msgstr ""
554
+
555
+ #: includes/admin/wcj-welcome-screen-content.php:23
556
+ msgid "30-Day Risk Free"
557
+ msgstr ""
558
+
559
+ #: includes/admin/wcj-welcome-screen-content.php:23
560
+ msgid "Money Back Guarantee"
561
+ msgstr ""
562
+
563
+ #: includes/admin/wcj-welcome-screen-content.php:29
564
+ msgid "400+ 5-Star"
565
+ msgstr ""
566
+
567
+ #: includes/admin/wcj-welcome-screen-content.php:29
568
+ msgid "Reviews"
569
+ msgstr ""
570
+
571
+ #: includes/admin/wcj-welcome-screen-content.php:35
572
+ msgid "Trusted by"
573
+ msgstr ""
574
+
575
+ #: includes/admin/wcj-welcome-screen-content.php:35
576
+ msgid "100,000+"
577
+ msgstr ""
578
+
579
+ #: includes/admin/wcj-welcome-screen-content.php:35
580
+ msgid "Websites"
581
+ msgstr ""
582
+
583
+ #: includes/admin/wcj-welcome-screen-content.php:42
584
+ msgid "Tons of Customizations and Zero Coding."
585
+ msgstr ""
586
+
587
+ #: includes/admin/wcj-welcome-screen-content.php:44
588
+ msgid ""
589
+ "Access more than one hundred easy-to-use modules to quickly add customized "
590
+ "functionality to your WooCommerce business"
591
+ msgstr ""
592
+
593
+ #: includes/admin/wcj-welcome-screen-content.php:45
594
+ msgid "- Without writing a line of code."
595
+ msgstr ""
596
+
597
+ #: includes/admin/wcj-welcome-screen-content.php:54
598
+ msgid "PDF Invoicing and Packing Slips"
599
+ msgstr ""
600
+
601
+ #: includes/admin/wcj-welcome-screen-content.php:55
602
+ msgid ""
603
+ "Streamline your WooCommerce orders and paperwork, and deliver a seamless "
604
+ "customer experience with the PDF Invoicing and Packing Slips module."
605
+ msgstr ""
606
+
607
+ #: includes/admin/wcj-welcome-screen-content.php:63
608
+ #: includes/class-wcj-product-addons.php:30
609
+ msgid "Product Addons"
610
+ msgstr ""
611
+
612
+ #: includes/admin/wcj-welcome-screen-content.php:64
613
+ msgid ""
614
+ "Create addons for your WooCommerce products like support service or special "
615
+ "offers with the Product Addons Module."
616
+ msgstr ""
617
+
618
+ #: includes/admin/wcj-welcome-screen-content.php:73
619
+ msgid ""
620
+ "Allow your customers to provide more details about their order with the "
621
+ "Product Input Fields module. Super handy when selling customized products."
622
+ msgstr ""
623
+
624
+ #: includes/admin/wcj-welcome-screen-content.php:81
625
+ msgid "Button and Price Labels"
626
+ msgstr ""
627
+
628
+ #: includes/admin/wcj-welcome-screen-content.php:82
629
+ msgid ""
630
+ "Add custom buttons and price labels to your products with this popular "
631
+ "module. Set automatic price for products with an empty price field."
632
+ msgstr ""
633
+
634
+ #: includes/admin/wcj-welcome-screen-content.php:90
635
+ msgid "Prices and Currencies"
636
+ msgstr ""
637
+
638
+ #: includes/admin/wcj-welcome-screen-content.php:91
639
+ msgid ""
640
+ "Make it easy for customers around the globe to make purchases on your site by "
641
+ "displaying their currency with the Prices and Currencies by Country module."
642
+ msgstr ""
643
+
644
+ #: includes/admin/wcj-welcome-screen-content.php:100
645
+ msgid ""
646
+ "Set up multiple payment gateways based on currency, shipping method, country, "
647
+ "or state."
648
+ msgstr ""
649
+
650
+ #: includes/admin/wcj-welcome-screen-content.php:108
651
+ msgid "Cart and Checkout"
652
+ msgstr ""
653
+
654
+ #: includes/admin/wcj-welcome-screen-content.php:109
655
+ msgid ""
656
+ "Customize the shopping cart and checkout experience. Add coupons, additional "
657
+ "fees, custom fields, and buttons with the Cart and Checkout modules."
658
+ msgstr ""
659
+
660
+ #: includes/admin/wcj-welcome-screen-content.php:117
661
+ msgid "Emails & Additional Tools"
662
+ msgstr ""
663
+
664
+ #: includes/admin/wcj-welcome-screen-content.php:118
665
+ msgid ""
666
+ "Add custom emails, additional recipients, and verification for increased "
667
+ "security. Explore miscellaneous reporting and customization tools for "
668
+ "increased functionality."
669
+ msgstr ""
670
+
671
+ #: includes/admin/wcj-welcome-screen-content.php:122
672
+ msgid "See All Features"
673
+ msgstr ""
674
+
675
+ #: includes/admin/wcj-welcome-screen-content.php:126
676
+ msgid "Don't miss updates from us!"
677
+ msgstr ""
678
+
679
+ #: includes/admin/wcj-welcome-screen-content.php:133
680
+ msgid "Thank you for subscribing your email"
681
+ msgstr ""
682
+
683
+ #: includes/admin/wcj-welcome-screen-content.php:136
684
+ msgid "You have already subscribed your email"
685
+ msgstr ""
686
+
687
+ #: includes/admin/wcj-welcome-screen-content.php:141
688
+ msgid "Contact Us"
689
+ msgstr ""
690
+
691
+ #: includes/admin/wcj-welcome-screen-content.php:143
692
+ msgid ""
693
+ "Booster Plus customers get access to Premium Support and we respond within 24 "
694
+ "business hours."
695
+ msgstr ""
696
+
697
+ #: includes/admin/wcj-welcome-screen-content.php:144
698
+ msgid "Booster Plus Premium Support"
699
+ msgstr ""
700
+
701
+ #: includes/admin/wcj-welcome-screen-content.php:147
702
+ msgid ""
703
+ "Free users post on WordPress Plugin Support forum here. We check these "
704
+ "threads twice every week Mon and Frid to respond."
705
+ msgstr ""
706
+
707
+ #: includes/admin/wcj-welcome-screen-content.php:148
708
+ msgid "Booster Free Plugin Support"
709
+ msgstr ""
710
+
711
  #: includes/class-wcj-add-to-cart-button-visibility.php:26
712
  msgid "Add to Cart Button Visibility"
713
  msgstr ""
1335
  msgstr ""
1336
 
1337
  #: includes/class-wcj-checkout-fees.php:232
 
1338
  #: includes/settings/wcj-settings-checkout-fees.php:41
1339
  #: includes/settings/wcj-settings-checkout-fees.php:62
 
 
1340
  msgid "Fee"
1341
  msgstr ""
1342
 
3578
  #: includes/settings/wcj-settings-product-by-time.php:21
3579
  #: includes/settings/wcj-settings-product-by-time.php:53
3580
  #: includes/settings/wcj-settings-product-by-user.php:107
 
 
3581
  #: includes/settings/wcj-settings-product-info.php:35
3582
  #: includes/settings/wcj-settings-product-info.php:68
3583
  #: includes/settings/wcj-settings-product-input-fields.php:24
3755
  msgid "View cart"
3756
  msgstr ""
3757
 
 
 
 
 
3758
  #: includes/class-wcj-product-addons.php:31
3759
  msgid ""
3760
  "Add (paid/free/discount) addons to products (1 addon allowed in free version)."
3915
  #: includes/settings/wcj-settings-export.php:171
3916
  #: includes/settings/wcj-settings-export.php:250
3917
  #: includes/settings/wcj-settings-global-discount.php:74
 
3918
  msgid "Value"
3919
  msgstr ""
3920
 
4295
  #: includes/settings/wcj-settings-product-add-to-cart.php:300
4296
  #: includes/settings/wcj-settings-product-addons.php:92
4297
  #: includes/settings/wcj-settings-product-by-user.php:167
 
4298
  #: includes/settings/wcj-settings-product-tabs.php:72
4299
  #: includes/settings/wcj-settings-product-tabs.php:389
4300
  #: includes/settings/wcj-settings-product-tabs.php:410
4407
  "to the selection drop box on frontend."
4408
  msgstr ""
4409
 
 
 
 
 
 
 
 
 
 
 
4410
  #: includes/class-wcj-product-images.php:25
4411
  msgid "Product Images"
4412
  msgstr ""
5883
  #: includes/settings/wcj-settings-admin-products-list.php:75
5884
  #: includes/settings/wcj-settings-checkout-custom-fields.php:121
5885
  #: includes/settings/wcj-settings-checkout-fees.php:46
 
5886
  #: includes/shipping/class-wc-shipping-wcj-custom.php:101
5887
  msgid "Enable/Disable"
5888
  msgstr ""
6366
  #: includes/settings/wcj-settings-export.php:240
6367
  #: includes/settings/wcj-settings-global-discount.php:63
6368
  #: includes/settings/wcj-settings-product-addons.php:80
 
6369
  #: includes/settings/wcj-settings-purchase-data.php:84
6370
  #: includes/settings/wcj-settings-shipping-options.php:77
6371
  #: includes/shipping/class-wc-shipping-wcj-custom-with-shipping-zones.php:199
8611
  msgid "Templates"
8612
  msgstr ""
8613
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8614
  #: includes/price-by-country/class-wcj-price-by-country-group-generator.php:34
8615
  msgid "Country groups successfully generated."
8616
  msgstr ""
9472
  #: includes/settings/wcj-settings-checkout-fees.php:72
9473
  #: includes/settings/wcj-settings-global-discount.php:69
9474
  #: includes/settings/wcj-settings-payment-gateways-fees.php:57
 
9475
  #: includes/settings/wcj-settings-purchase-data.php:89
9476
  #: includes/settings/wcj-settings-wholesale-price.php:89
9477
  msgid "Percent"
9482
  #: includes/settings/wcj-settings-global-discount.php:70
9483
  #: includes/settings/wcj-settings-payment-gateways-fees.php:56
9484
  #: includes/settings/wcj-settings-price-by-user-role.php:31
 
9485
  #: includes/settings/wcj-settings-purchase-data.php:88
9486
  #: includes/settings/wcj-settings-wholesale-price.php:90
9487
  msgid "Fixed"
10451
  msgid "Wide Row"
10452
  msgstr ""
10453
 
10454
+ #: includes/settings/wcj-settings-checkout-core-fields.php:140
10455
  msgid "priority (i.e. order)"
10456
  msgstr ""
10457
 
10458
+ #: includes/settings/wcj-settings-checkout-core-fields.php:141
10459
  msgid "Leave zero for WooCommerce defaults."
10460
  msgstr ""
10461
 
10462
+ #: includes/settings/wcj-settings-checkout-core-fields.php:149
10463
  msgid "include product categories"
10464
  msgstr ""
10465
 
10466
+ #: includes/settings/wcj-settings-checkout-core-fields.php:150
10467
  msgid ""
10468
  "If not empty - selected categories products must be in cart for current field "
10469
  "to appear."
10470
  msgstr ""
10471
 
10472
+ #: includes/settings/wcj-settings-checkout-core-fields.php:161
10473
  msgid "exclude product categories"
10474
  msgstr ""
10475
 
10476
+ #: includes/settings/wcj-settings-checkout-core-fields.php:162
10477
  msgid ""
10478
  "If not empty - current field is hidden, if selected categories products are "
10479
  "in cart."
11110
  msgstr ""
11111
 
11112
  #: includes/settings/wcj-settings-checkout-fees.php:14
 
11113
  msgid "Fees"
11114
  msgstr ""
11115
 
11116
  #: includes/settings/wcj-settings-checkout-fees.php:19
 
11117
  msgid "Total Fees"
11118
  msgstr ""
11119
 
11120
  #: includes/settings/wcj-settings-checkout-fees.php:53
11121
  #: includes/settings/wcj-settings-payment-gateways-fees.php:101
 
11122
  msgid "Taxable"
11123
  msgstr ""
11124
 
11125
  #: includes/settings/wcj-settings-checkout-fees.php:83
 
11126
  msgid "Cart Minimum Quantity"
11127
  msgstr ""
11128
 
11129
  #: includes/settings/wcj-settings-checkout-fees.php:84
 
11130
  msgid "Minimum amount of items in cart."
11131
  msgstr ""
11132
 
11133
  #: includes/settings/wcj-settings-checkout-fees.php:91
 
11134
  msgid "Cart Maximum Quantity"
11135
  msgstr ""
11136
 
11137
  #: includes/settings/wcj-settings-checkout-fees.php:92
 
11138
  msgid "Maximum amount of items in cart."
11139
  msgstr ""
11140
 
11141
  #: includes/settings/wcj-settings-checkout-fees.php:92
 
11142
  msgid "Zero or empty values will not be considered"
11143
  msgstr ""
11144
 
11145
  #: includes/settings/wcj-settings-checkout-fees.php:98
 
11146
  msgid "Cart Minimum Total"
11147
  msgstr ""
11148
 
11149
  #: includes/settings/wcj-settings-checkout-fees.php:99
 
11150
  msgid "Minimum total amount in cart."
11151
  msgstr ""
11152
 
11153
  #: includes/settings/wcj-settings-checkout-fees.php:107
 
11154
  msgid "Cart Maximum Total"
11155
  msgstr ""
11156
 
11157
  #: includes/settings/wcj-settings-checkout-fees.php:108
 
11158
  msgid "Maximum total amount in cart."
11159
  msgstr ""
11160
 
11185
  #: includes/settings/wcj-settings-checkout-fees.php:134
11186
  #: includes/settings/wcj-settings-product-add-to-cart.php:297
11187
  #: includes/settings/wcj-settings-product-add-to-cart.php:333
 
11188
  msgid "Priority"
11189
  msgstr ""
11190
 
11191
  #: includes/settings/wcj-settings-checkout-fees.php:135
 
11192
  msgid "The higher the number the higher the priority."
11193
  msgstr ""
11194
 
11195
  #: includes/settings/wcj-settings-checkout-fees.php:135
 
11196
  msgid "Will mostly make sense for overlapping."
11197
  msgstr ""
11198
 
15185
 
15186
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:49
15187
  #: includes/settings/wcj-settings-price-labels.php:125
 
15188
  #: includes/settings/wcj-settings-product-input-fields.php:113
15189
  msgid "Product Categories - Include"
15190
  msgstr ""
15197
 
15198
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:60
15199
  #: includes/settings/wcj-settings-price-labels.php:134
 
15200
  #: includes/settings/wcj-settings-product-input-fields.php:124
15201
  msgid "Product Categories - Exclude"
15202
  msgstr ""
15209
 
15210
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:72
15211
  #: includes/settings/wcj-settings-price-labels.php:107
 
15212
  #: includes/settings/wcj-settings-product-input-fields.php:158
15213
  msgid "Products - Include"
15214
  msgstr ""
15221
 
15222
  #: includes/settings/wcj-settings-payment-gateways-per-category.php:85
15223
  #: includes/settings/wcj-settings-price-labels.php:116
 
15224
  #: includes/settings/wcj-settings-product-input-fields.php:170
15225
  msgid "Products - Exclude"
15226
  msgstr ""
17269
  #: includes/settings/wcj-settings-product-custom-info.php:155
17270
  #: includes/settings/wcj-settings-product-custom-info.php:163
17271
  #: includes/settings/wcj-settings-product-custom-info.php:171
 
 
 
 
 
 
 
17272
  msgid "Leave blank to disable the option."
17273
  msgstr ""
17274
 
17310
  msgid "E.g.: %s."
17311
  msgstr ""
17312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17313
  #: includes/settings/wcj-settings-product-images.php:14
17314
  msgid "Product Image and Thumbnails"
17315
  msgstr ""
17547
  msgid "Product categories to exclude."
17548
  msgstr ""
17549
 
17550
+ #: includes/settings/wcj-settings-product-input-fields.php:135
17551
+ msgid "Product Tags - Include"
17552
+ msgstr ""
17553
+
17554
  #: includes/settings/wcj-settings-product-input-fields.php:136
17555
  msgid "Product tags to include."
17556
  msgstr ""
17557
 
17558
+ #: includes/settings/wcj-settings-product-input-fields.php:146
17559
+ msgid "Product Tags - Exclude"
17560
+ msgstr ""
17561
+
17562
  #: includes/settings/wcj-settings-product-input-fields.php:147
17563
  msgid "Product tags to exclude."
17564
  msgstr ""
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: anbinder, karzin, pluggabl
3
  Tags: woocommerce customization, woocommerce bundle, woocommerce product addon, woocommerce integration, ecommerce plugin
4
  Requires at least: 4.4
5
- Tested up to: 5.7.1
6
  Requires PHP: 5.6
7
- Stable tag: 5.4.0
8
  License: GNU General Public License v3.0
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -30,10 +30,10 @@ Multiple WordPress WooCommerce plugins are a thing of the past! Boost the functi
30
 
31
  **Key Features of Booster for WooCommerce**
32
  <ul>
33
- <li><a href="https://booster.io/features/woocommerce-pdf-invoicing-and-packing-slips/"><strong>PDF Invoicing and Packing slips:</strong></a> Streamline WooCommerce orders and paperwork by adding professional WooCommerce PDF invoices and offline packing docs. </li>
34
  <li><a href="https://booster.io/features/woocommerce-product-input-fields/"><strong>Product Input fields:</strong></a> Add additional custom input fields on all products or per product and allow customers to add more information for the perfect custom product. If you’re selling customized products, this is a must! </li>
35
  <li><a href="https://booster.io/category/features/prices-currencies/"><strong>Prices and Currencies:</strong></a> Attract international customers to your site by displaying their currency with automatic exchange rates. Define price rules with WooCommerce Dynamic Pricing and offer global discounts. </li>
36
- <li><a href="https://booster.io/category/features/cart-checkout/"><strong>Cart and Checkout:</strong></a> Customize the shopping cart and checkout experience for your customers. Create and add custom fields, coupons, additional fees, buttons, and more. Customize the checkout experience with WooCommerce custom fields, like VAT for EU countries, coupon codes, and checkout fees.</li>
37
  <li><a href="https://booster.io/features/woocommerce-product-addons/"><strong>Product Addons:</strong></a> Use the WooCommerce Product Addons module to customize any product, such as setting product labels and prices for each addon or creating automatic discounts. Addons can be added globally or per product.</li>
38
  <li><a href="https://booster.io/features/woocommerce-free-price-labels/" ><strong>Button and Price labels:</strong></a> Change price labels and create custom buttons of your choice. Add customized buttons and price labels to your products. The WooCommerce Free Price Labels module lets you set automatic prices for products with an empty price field.</li>
39
  <li><a href="https://booster.io/category/features/payment-gateways/"><strong>Payment gateways:</strong></a> Set up custom WooCommerce payment gateways based on currency, shipping method, or location. Set up a multi-currency converter, and add min/max amounts for payment gateways to show up.</li>
@@ -224,7 +224,7 @@ To unlock all Booster for WooCommerce features, please install additional [Boost
224
 
225
  **PDF Invoicing & Packing Slips**
226
 
227
- * *PDF Invoicing* - Invoices, Proforma Invoices (Plus), Credit Notes (Plus) and Packing Slips (Plus).
228
 
229
  **Emails & Misc.**
230
 
@@ -254,6 +254,12 @@ To unlock all Booster for WooCommerce features, please install additional [Boost
254
  * For support please visit the [Plugin Support Forum](https://wordpress.org/support/plugin/woocommerce-jetpack/).
255
  == Changelog ==
256
 
 
 
 
 
 
 
257
  = 5.4.0 29/04/2021 =
258
  * Dev - Add Tooltip & Suggestion for fields
259
  * Dev - Shortcodes - Orders - Add `[Wcj_order_shipping_price_without_html_custom]` shortcode.
2
  Contributors: anbinder, karzin, pluggabl
3
  Tags: woocommerce customization, woocommerce bundle, woocommerce product addon, woocommerce integration, ecommerce plugin
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
 
30
 
31
  **Key Features of Booster for WooCommerce**
32
  <ul>
33
+ <li><a href="https://booster.io/woocommerce-pdf-invoicing-and-packing-slips/"><strong>PDF Invoicing and Packing slips:</strong></a> Streamline WooCommerce orders and paperwork by adding professional WooCommerce PDF invoices and offline packing docs. </li>
34
  <li><a href="https://booster.io/features/woocommerce-product-input-fields/"><strong>Product Input fields:</strong></a> Add additional custom input fields on all products or per product and allow customers to add more information for the perfect custom product. If you’re selling customized products, this is a must! </li>
35
  <li><a href="https://booster.io/category/features/prices-currencies/"><strong>Prices and Currencies:</strong></a> Attract international customers to your site by displaying their currency with automatic exchange rates. Define price rules with WooCommerce Dynamic Pricing and offer global discounts. </li>
36
+ <li><a href="https://booster.io/category/features/cart-checkout/"><strong>Cart and Checkout:</strong></a> Customize the shopping cart and checkout experience for your customers. Create and add custom fields, coupons, additional fees, buttons, and more. Customize the checkout experience with WooCommerce custom fields, like VAT for EU countries, coupon codes, and checkout fees. Reduce cart abandonment with WooCommerce One Page Checkout.</li>
37
  <li><a href="https://booster.io/features/woocommerce-product-addons/"><strong>Product Addons:</strong></a> Use the WooCommerce Product Addons module to customize any product, such as setting product labels and prices for each addon or creating automatic discounts. Addons can be added globally or per product.</li>
38
  <li><a href="https://booster.io/features/woocommerce-free-price-labels/" ><strong>Button and Price labels:</strong></a> Change price labels and create custom buttons of your choice. Add customized buttons and price labels to your products. The WooCommerce Free Price Labels module lets you set automatic prices for products with an empty price field.</li>
39
  <li><a href="https://booster.io/category/features/payment-gateways/"><strong>Payment gateways:</strong></a> Set up custom WooCommerce payment gateways based on currency, shipping method, or location. Set up a multi-currency converter, and add min/max amounts for payment gateways to show up.</li>
224
 
225
  **PDF Invoicing & Packing Slips**
226
 
227
+ * *PDF Invoicing* - Invoices, Proforma Invoices (Plus), Credit Notes (Plus), Paid Stamp (Plus) and Packing Slips (Plus).
228
 
229
  **Emails & Misc.**
230
 
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.
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.0
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.1.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.0';
61
 
62
  /**
63
  * @var WC_Jetpack The single instance of the class
@@ -123,7 +123,7 @@ WCJ();
123
  /**
124
  * wc jetpack activation hook.
125
  *
126
- * @version 5.3.6
127
  */
128
  function wcj_activation_hook() {
129
  // Add transient to trigger redirect.
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
  * @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
123
  /**
124
  * wc jetpack activation hook.
125
  *
126
+ * @version 5.4.1
127
  */
128
  function wcj_activation_hook() {
129
  // Add transient to trigger redirect.