Version Description
27/04/2022 =
- NEW FEATURE - PDF INVOICING & PACKING SLIPS - PDF Invoicing - Added new shortcode to show 0 VAT message. [wcj_order_vat_func vat_exempt_text=' ']
- FIXED - PDF INVOICING & PACKING SLIPS - PDF Invoicing - Bulk and auto-generate number sequence issue has been fixed.
- FIXED - PRICES & CURRENCIES- Prices and Currencies by Country - Added Compatibility of B2B King wholesale prices.
- FIXED - PRODUCT- Product Tabs - WPML issue with global product tabs.
- FIXED - PAYMENT GATEWAYS - Gateways Fees and Discounts - Updated the payment fee calculation
- WooCommerce 6.4.1 tested
- WordPress 5.9.3 tested
Download this release
Release Info
Developer | ronyp |
Plugin | Booster for WooCommerce |
Version | 5.5.7 |
Comparing to | |
See all releases |
Code changes from version 5.5.6 to 5.5.7
- includes/class-wcj-payment-gateways-fees.php +3 -3
- includes/class-wcj-pdf-invoicing.php +24 -2
- includes/class-wcj-product-tabs.php +5 -4
- includes/price-by-country/class-wcj-price-by-country-core.php +23 -2
- includes/settings/wcj-settings-pdf-invoicing-numbering.php +7 -1
- includes/settings/wcj-settings-price-by-country.php +8 -1
- includes/shortcodes/class-wcj-shortcodes-orders.php +23 -22
- langs/woocommerce-jetpack.pot +149 -184
- readme.txt +18 -2
- version-details.txt +5 -5
- woocommerce-jetpack.php +3 -3
includes/class-wcj-payment-gateways-fees.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Booster for WooCommerce - Module - Gateways Fees and Discounts
|
5 |
*
|
6 |
-
* @version 5.
|
7 |
* @since 2.2.2
|
8 |
* @author Pluggabl LLC.
|
9 |
*/
|
@@ -217,7 +217,7 @@ if (!class_exists('WCJ_Payment_Gateways_Fees')) :
|
|
217 |
/**
|
218 |
* gateways_fees.
|
219 |
*
|
220 |
-
* @version 5.
|
221 |
*/
|
222 |
function gateways_fees()
|
223 |
{
|
@@ -253,7 +253,7 @@ if (!class_exists('WCJ_Payment_Gateways_Fees')) :
|
|
253 |
$final_fee_to_add = $fee_value;
|
254 |
break;
|
255 |
case 'percent':
|
256 |
-
$final_fee_to_add =
|
257 |
if ('yes' === $this->wcj_get_option('round', $current_gateway)) {
|
258 |
$final_fee_to_add = round($final_fee_to_add, $this->wcj_get_option('round_precision', $current_gateway));
|
259 |
}
|
3 |
/**
|
4 |
* Booster for WooCommerce - Module - Gateways Fees and Discounts
|
5 |
*
|
6 |
+
* @version 5.5.7
|
7 |
* @since 2.2.2
|
8 |
* @author Pluggabl LLC.
|
9 |
*/
|
217 |
/**
|
218 |
* gateways_fees.
|
219 |
*
|
220 |
+
* @version 5.5.7
|
221 |
*/
|
222 |
function gateways_fees()
|
223 |
{
|
253 |
$final_fee_to_add = $fee_value;
|
254 |
break;
|
255 |
case 'percent':
|
256 |
+
$final_fee_to_add = $total_in_cart * 100/(100-$fee_value) - $total_in_cart;
|
257 |
if ('yes' === $this->wcj_get_option('round', $current_gateway)) {
|
258 |
$final_fee_to_add = round($final_fee_to_add, $this->wcj_get_option('round_precision', $current_gateway));
|
259 |
}
|
includes/class-wcj-pdf-invoicing.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - PDF Invoicing
|
4 |
*
|
5 |
-
* @version 5.
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
@@ -154,7 +154,7 @@ class WCJ_PDF_Invoicing extends WCJ_Module {
|
|
154 |
/**
|
155 |
* Processes the PDF bulk actions.
|
156 |
*
|
157 |
-
* @version
|
158 |
* @since 2.5.7
|
159 |
* @todo on `generate` (and maybe other actions) validate user permissions/capabilities - `if ( ! current_user_can( $post_type_object->cap->export_post, $post_id ) ) { wp_die( __( 'You are not allowed to export this post.' ) ); }`
|
160 |
*
|
@@ -183,6 +183,28 @@ class WCJ_PDF_Invoicing extends WCJ_Module {
|
|
183 |
switch( $the_action ) {
|
184 |
case 'generate':
|
185 |
$generated = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
foreach( $post_ids as $post_id ) {
|
187 |
if ( $this->create_document( $post_id, $the_type ) ) {
|
188 |
$generated++;
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - PDF Invoicing
|
4 |
*
|
5 |
+
* @version 5.5.7
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
154 |
/**
|
155 |
* Processes the PDF bulk actions.
|
156 |
*
|
157 |
+
* @version 5.5.7
|
158 |
* @since 2.5.7
|
159 |
* @todo on `generate` (and maybe other actions) validate user permissions/capabilities - `if ( ! current_user_can( $post_type_object->cap->export_post, $post_id ) ) { wp_die( __( 'You are not allowed to export this post.' ) ); }`
|
160 |
*
|
183 |
switch( $the_action ) {
|
184 |
case 'generate':
|
185 |
$generated = 0;
|
186 |
+
|
187 |
+
if ('yes' === get_option('wcj_invoicing_desc_order_sequence')) {
|
188 |
+
|
189 |
+
$invoice_num = array_reverse($post_ids);
|
190 |
+
foreach ($invoice_num as $post_id) {
|
191 |
+
if ($this->create_document($post_id, $the_type)) {
|
192 |
+
$generated++;
|
193 |
+
}
|
194 |
+
}
|
195 |
+
// Build the redirect url
|
196 |
+
$redirect_to = add_query_arg(
|
197 |
+
array(
|
198 |
+
'generated' => $generated,
|
199 |
+
'generated_type' => $the_type,
|
200 |
+
'generated_' . $the_type => 1,
|
201 |
+
'ids' => join(',', $invoice_num),
|
202 |
+
'post_status' => $_GET['post_status'],
|
203 |
+
),
|
204 |
+
$redirect_to
|
205 |
+
);
|
206 |
+
}
|
207 |
+
|
208 |
foreach( $post_ids as $post_id ) {
|
209 |
if ( $this->create_document( $post_id, $the_type ) ) {
|
210 |
$generated++;
|
includes/class-wcj-product-tabs.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Tabs
|
4 |
*
|
5 |
-
* @version 5.5.
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
@@ -523,11 +523,12 @@ class WCJ_Product_Tabs extends WCJ_Module {
|
|
523 |
/**
|
524 |
* create_new_custom_product_tab_global.
|
525 |
*
|
526 |
-
* @version
|
527 |
*/
|
528 |
function create_new_custom_product_tab_global( $key, $tab ) {
|
529 |
-
|
530 |
-
|
|
|
531 |
|
532 |
/**
|
533 |
* save_custom_tabs_meta_box.
|
2 |
/**
|
3 |
* Booster for WooCommerce - Module - Product Tabs
|
4 |
*
|
5 |
+
* @version 5.5.7
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
523 |
/**
|
524 |
* create_new_custom_product_tab_global.
|
525 |
*
|
526 |
+
* @version 5.5.7
|
527 |
*/
|
528 |
function create_new_custom_product_tab_global( $key, $tab ) {
|
529 |
+
echo $this->get_tab_output( wcj_get_option( 'wcj_custom_product_tabs_content_' . $this->tab_option_keys['global'][ $key ] ) );
|
530 |
+
}
|
531 |
+
|
532 |
|
533 |
/**
|
534 |
* save_custom_tabs_meta_box.
|
includes/price-by-country/class-wcj-price-by-country-core.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Price by Country - Core
|
4 |
*
|
5 |
-
* @version 5.5.
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
@@ -779,7 +779,7 @@ class WCJ_Price_by_Country_Core {
|
|
779 |
/**
|
780 |
* change_price.
|
781 |
*
|
782 |
-
* @version
|
783 |
*/
|
784 |
function change_price( $price, $product ) {
|
785 |
if ( null != ( $group_id = $this->get_customer_country_group_id() ) ) {
|
@@ -804,6 +804,27 @@ class WCJ_Price_by_Country_Core {
|
|
804 |
}
|
805 |
$new_price = wcj_price_by_country( $price, $product, $group_id );
|
806 |
WCJ()->modules['price_by_country']->calculated_products_prices[ wcj_get_product_id( $product ) ][ $_current_filter ] = $new_price;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
return $new_price;
|
808 |
}
|
809 |
// No changes
|
2 |
/**
|
3 |
* Booster for WooCommerce - Price by Country - Core
|
4 |
*
|
5 |
+
* @version 5.5.7
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
779 |
/**
|
780 |
* change_price.
|
781 |
*
|
782 |
+
* @version 5.5.7
|
783 |
*/
|
784 |
function change_price( $price, $product ) {
|
785 |
if ( null != ( $group_id = $this->get_customer_country_group_id() ) ) {
|
804 |
}
|
805 |
$new_price = wcj_price_by_country( $price, $product, $group_id );
|
806 |
WCJ()->modules['price_by_country']->calculated_products_prices[ wcj_get_product_id( $product ) ][ $_current_filter ] = $new_price;
|
807 |
+
|
808 |
+
if(wcj_is_plugin_activated('b2b', 'b2bking.php')){
|
809 |
+
|
810 |
+
$user_id = get_current_user_id();
|
811 |
+
$currentusergroupidnr = get_user_meta($user_id, 'b2bking_customergroup', true );
|
812 |
+
$b2b_price = get_post_meta($product->get_id(), 'b2bking_sale_product_price_group_'.$currentusergroupidnr, true );
|
813 |
+
$b2b_regular_price = get_post_meta($product->get_id(), 'b2bking_regular_product_price_group_'.$currentusergroupidnr, true );
|
814 |
+
|
815 |
+
if('yes'=== get_option('wcj_price_by_country_b2b_sale_price_group','no')){
|
816 |
+
|
817 |
+
if( empty($b2b_price) && !empty($b2b_regular_price) && !$product->is_type( 'variable' ) ){
|
818 |
+
|
819 |
+
$b2b_regular_price = get_post_meta($product->get_id(), 'b2bking_regular_product_price_group_'.$currentusergroupidnr, true );
|
820 |
+
$country_exchange_rate = wcj_get_option( 'wcj_price_by_country_exchange_rate_group_' . $group_id, 1 );
|
821 |
+
$modified_price = $b2b_regular_price * $country_exchange_rate;
|
822 |
+
|
823 |
+
return $modified_price;
|
824 |
+
}
|
825 |
+
}
|
826 |
+
}
|
827 |
+
|
828 |
return $new_price;
|
829 |
}
|
830 |
// No changes
|
includes/settings/wcj-settings-pdf-invoicing-numbering.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - Numbering
|
4 |
*
|
5 |
-
* @version 5.
|
6 |
* @since 2.8.0
|
7 |
* @author Pluggabl LLC.
|
8 |
*/
|
@@ -58,6 +58,12 @@ foreach ( $invoice_types as $invoice_type ) {
|
|
58 |
'default' => '%prefix%%counter%%suffix%',
|
59 |
'type' => 'text',
|
60 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
array(
|
62 |
'type' => 'sectionend',
|
63 |
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_numbering_options',
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - PDF Invoicing - Numbering
|
4 |
*
|
5 |
+
* @version 5.5.7
|
6 |
* @since 2.8.0
|
7 |
* @author Pluggabl LLC.
|
8 |
*/
|
58 |
'default' => '%prefix%%counter%%suffix%',
|
59 |
'type' => 'text',
|
60 |
),
|
61 |
+
array(
|
62 |
+
'title' => __( 'Bulk Invoice Number DESC Order', 'woocommerce-jetpack' ),
|
63 |
+
'desc' => 'If you want generate invoice number sequence in DESC order sequence please enable this otherwise leave it uncheck',
|
64 |
+
'id' => 'wcj_invoicing_desc_order_sequence',
|
65 |
+
'type' => 'checkbox',
|
66 |
+
),
|
67 |
array(
|
68 |
'type' => 'sectionend',
|
69 |
'id' => 'wcj_invoicing_' . $invoice_type['id'] . '_numbering_options',
|
includes/settings/wcj-settings-price-by-country.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Prices and Currencies by Country
|
4 |
*
|
5 |
-
* @version 5.
|
6 |
* @since 2.8.1
|
7 |
* @author Pluggabl LLC.
|
8 |
*/
|
@@ -168,6 +168,13 @@ $settings = array(
|
|
168 |
'type' => 'title',
|
169 |
'id' => 'wcj_price_by_country_compatibility',
|
170 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
|
172 |
|
173 |
array(
|
2 |
/**
|
3 |
* Booster for WooCommerce - Settings - Prices and Currencies by Country
|
4 |
*
|
5 |
+
* @version 5.5.7
|
6 |
* @since 2.8.1
|
7 |
* @author Pluggabl LLC.
|
8 |
*/
|
168 |
'type' => 'title',
|
169 |
'id' => 'wcj_price_by_country_compatibility',
|
170 |
),
|
171 |
+
array(
|
172 |
+
'title' => __('Active B2B Plugin Price Section', 'woocommerce-jetpack'),
|
173 |
+
'desc' => __( 'Active B2B Plugin Price Section', 'woocommerce-jetpack' ),
|
174 |
+
'id' => 'wcj_price_by_country_b2b_sale_price_group',
|
175 |
+
'default' => 'no',
|
176 |
+
'type' => 'checkbox',
|
177 |
+
),
|
178 |
|
179 |
|
180 |
array(
|
includes/shortcodes/class-wcj-shortcodes-orders.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Booster for WooCommerce - Shortcodes - Orders
|
4 |
*
|
5 |
-
* @version 5.
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
@@ -157,6 +157,27 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
157 |
|
158 |
return $modified_atts;
|
159 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
|
161 |
|
162 |
/**
|
@@ -189,27 +210,7 @@ class WCJ_Orders_Shortcodes extends WCJ_Shortcodes {
|
|
189 |
}
|
190 |
|
191 |
|
192 |
-
|
193 |
-
* wcj_order_vat_func.
|
194 |
-
*
|
195 |
-
* @version 5.5.6
|
196 |
-
* @since 5.5.6
|
197 |
-
*/
|
198 |
-
|
199 |
-
function wcj_order_vat_func($attr) {
|
200 |
-
if(isset($attr['vat_exempt_text'])) {
|
201 |
-
$vat_exempt_text = $attr['vat_exempt_text'];
|
202 |
-
$order_id = wcj_get_order_id( $this->the_order );
|
203 |
-
$order = wc_get_order( $order_id );
|
204 |
-
foreach ( $order->get_items() as $item_id => $item ) {
|
205 |
-
$tax = $item->get_subtotal_tax();
|
206 |
-
|
207 |
-
if( $tax == 0){
|
208 |
-
return $vat_exempt_text ;
|
209 |
-
}
|
210 |
-
}
|
211 |
-
}
|
212 |
-
}
|
213 |
|
214 |
/**
|
215 |
* extra_check.
|
2 |
/**
|
3 |
* Booster for WooCommerce - Shortcodes - Orders
|
4 |
*
|
5 |
+
* @version 5.5.7
|
6 |
* @author Pluggabl LLC.
|
7 |
*/
|
8 |
|
157 |
|
158 |
return $modified_atts;
|
159 |
}
|
160 |
+
/**
|
161 |
+
* wcj_order_vat_func.
|
162 |
+
*
|
163 |
+
* @version 5.5.7
|
164 |
+
* @since 5.5.6
|
165 |
+
*/
|
166 |
+
|
167 |
+
function wcj_order_vat_func($attr) {
|
168 |
+
if(isset($attr['vat_exempt_text'])) {
|
169 |
+
$vat_exempt_text = $attr['vat_exempt_text'];
|
170 |
+
$order_id = wcj_get_order_id( $this->the_order );
|
171 |
+
$order = wc_get_order( $order_id );
|
172 |
+
foreach ( $order->get_items() as $item_id => $item ) {
|
173 |
+
$tax = $item->get_subtotal_tax();
|
174 |
+
|
175 |
+
if( $tax == 0){
|
176 |
+
return $vat_exempt_text ;
|
177 |
+
}
|
178 |
+
}
|
179 |
+
}
|
180 |
+
}
|
181 |
|
182 |
|
183 |
/**
|
210 |
}
|
211 |
|
212 |
|
213 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
215 |
/**
|
216 |
* extra_check.
|
langs/woocommerce-jetpack.pot
CHANGED
@@ -44,7 +44,7 @@ msgstr ""
|
|
44 |
#: includes/class-wcj-track-users.php:164 includes/class-wcj-track-users.php:252
|
45 |
#: includes/classes/class-wcj-module.php:582
|
46 |
#: includes/classes/class-wcj-module.php:782
|
47 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
48 |
msgid "Booster"
|
49 |
msgstr ""
|
50 |
|
@@ -73,7 +73,7 @@ msgstr ""
|
|
73 |
|
74 |
#: includes/admin/class-wc-settings-jetpack.php:245
|
75 |
#: includes/admin/class-wc-settings-jetpack.php:312
|
76 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
77 |
#: includes/admin/wcj-modules-cats.php:14 includes/class-wcj-admin-bar.php:214
|
78 |
#: includes/class-wcj-my-account.php:34
|
79 |
msgid "Dashboard"
|
@@ -114,7 +114,7 @@ msgstr ""
|
|
114 |
#: includes/admin/class-wc-settings-jetpack.php:386
|
115 |
#: includes/class-wcj-admin-bar.php:384
|
116 |
#: includes/settings/wcj-settings-emails-verification.php:146
|
117 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
118 |
msgid "WooCommerce"
|
119 |
msgstr ""
|
120 |
|
@@ -131,7 +131,7 @@ msgid ""
|
|
131 |
msgstr ""
|
132 |
|
133 |
#: includes/admin/class-wc-settings-jetpack.php:465
|
134 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
135 |
#: includes/class-wcj-export-import.php:26
|
136 |
msgid "Export"
|
137 |
msgstr ""
|
@@ -141,7 +141,7 @@ msgid "Export all Booster's options to a file."
|
|
141 |
msgstr ""
|
142 |
|
143 |
#: includes/admin/class-wc-settings-jetpack.php:469
|
144 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
145 |
#: includes/class-wcj-purchase-data.php:104
|
146 |
msgid "Import"
|
147 |
msgstr ""
|
@@ -156,7 +156,7 @@ msgid ""
|
|
156 |
msgstr ""
|
157 |
|
158 |
#: includes/admin/class-wc-settings-jetpack.php:476
|
159 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
160 |
msgid "Reset"
|
161 |
msgstr ""
|
162 |
|
@@ -169,7 +169,7 @@ msgid "This will delete all Booster meta. Are you sure?"
|
|
169 |
msgstr ""
|
170 |
|
171 |
#: includes/admin/class-wc-settings-jetpack.php:482
|
172 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
173 |
msgid "Reset meta"
|
174 |
msgstr ""
|
175 |
|
@@ -206,7 +206,7 @@ msgid "Description"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: includes/admin/class-wc-settings-jetpack.php:591
|
209 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
210 |
#: includes/class-wcj-admin-bar.php:172
|
211 |
#: includes/classes/class-wcj-module.php:924
|
212 |
msgid "Documentation"
|
@@ -316,94 +316,50 @@ msgstr ""
|
|
316 |
msgid "My Account"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
320 |
-
msgid "License : "
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: includes/admin/class-wc-settings-jetpack.php:843
|
324 |
-
msgid "License is valid."
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
#: includes/admin/class-wc-settings-jetpack.php:848
|
328 |
-
msgid "No Subscription"
|
329 |
-
msgstr ""
|
330 |
-
|
331 |
-
#: includes/admin/class-wc-settings-jetpack.php:856
|
332 |
msgid "Get Booster Plus"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
336 |
msgid "Getting Started"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
340 |
msgid "Navigating Categories"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
344 |
msgid "How to get started with booster"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
348 |
-
msgid "License key setup instructions"
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: includes/admin/class-wc-settings-jetpack.php:876
|
352 |
-
msgid "Generate license key on"
|
353 |
-
msgstr ""
|
354 |
-
|
355 |
-
#: includes/admin/class-wc-settings-jetpack.php:876
|
356 |
-
msgid "Booster.io/my-account"
|
357 |
-
msgstr ""
|
358 |
-
|
359 |
-
#: includes/admin/class-wc-settings-jetpack.php:878
|
360 |
-
msgid ""
|
361 |
-
"Under the Downloads and Keys section, generate the key for your WooCommerce "
|
362 |
-
"store(Site URL should match the setting from your site)"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: includes/admin/class-wc-settings-jetpack.php:880
|
366 |
-
msgid "On your website get the Site URL"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: includes/admin/class-wc-settings-jetpack.php:882
|
370 |
-
msgid ""
|
371 |
-
"Go to WooCommerce --> Settings --> Booster --> Dashboard --> Site key "
|
372 |
-
"setting Copy the Site URL"
|
373 |
-
msgstr ""
|
374 |
-
|
375 |
-
#: includes/admin/class-wc-settings-jetpack.php:884
|
376 |
-
msgid "Configure Booster key on your website"
|
377 |
-
msgstr ""
|
378 |
-
|
379 |
-
#: includes/admin/class-wc-settings-jetpack.php:889
|
380 |
msgid "Frequently Asked Questions"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
384 |
msgid "Do I need to have coding skills to use Booster Plus?"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
388 |
msgid ""
|
389 |
"Absolutely not. You can configure pretty much everything Booster Plus has to "
|
390 |
"offer without any coding knowledge."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
394 |
msgid "Will Booster Plus slow down my website?"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
398 |
msgid ""
|
399 |
"Absolutely not. Booster Plus is carefully built with performance in mind."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
403 |
msgid "Do you offer refunds?"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"If you are not completely satisfied with Booster Plus within the fist 30 "
|
@@ -411,38 +367,38 @@ msgid ""
|
|
411 |
"no questions asked."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
415 |
msgid "Can I use Booster Plus on client sites?"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
419 |
msgid ""
|
420 |
"Yes, you can use Booster Plus on client sites. You can purchase the multiple "
|
421 |
"sites license of Booster Plus."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
425 |
msgid "Do you have an affiliate program?"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
429 |
msgid "Yes, We do have an affiliate program. "
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
433 |
msgid "Click here"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
437 |
msgid " for the details."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
441 |
msgid ""
|
442 |
"Why should I choose the Booster Plus suite over other individual plugins?"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
446 |
msgid ""
|
447 |
"Oh, that's an easy one! Implementing just a few modules from the Booster Plus "
|
448 |
"suite is more cost-effective than using dozens of individual plugins often "
|
@@ -454,39 +410,39 @@ msgid ""
|
|
454 |
"your WooCommerce site easily."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
458 |
msgid "What features does Booster Plus have?"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
462 |
msgid "You can see all the features at "
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
466 |
msgid "About Booster"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
470 |
msgid " page."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
474 |
msgid "Still have a question?"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
478 |
msgid "CONTACT BOOSTER SUPPORT"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
482 |
msgid "Connect with Booster"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
486 |
msgid "BOOSTER WEBSITE"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
490 |
#: includes/class-wcj-general.php:218 includes/class-wcj-product-by-user.php:198
|
491 |
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:157
|
492 |
#: includes/tools/class-wcj-order-statuses-tool.php:145
|
@@ -494,131 +450,131 @@ msgstr ""
|
|
494 |
msgid "Actions"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
498 |
msgid "Import Booster options"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
502 |
msgid "Export Booster options"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
506 |
msgid "Reset all Booster's options"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
510 |
msgid "Reset all Booster's meta"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
514 |
msgid "Here you can find all documentation of Booster"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
518 |
msgid "See Documentation"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
522 |
msgid "Latest updates"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
526 |
msgid "Version "
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
530 |
msgid "SEE MORE"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
534 |
#: includes/core/class-wcj-admin.php:85
|
535 |
msgid "Please rate "
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
539 |
#: includes/core/class-wcj-admin.php:85
|
540 |
msgid "Booster for Woocommerce"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
544 |
#: includes/core/class-wcj-admin.php:93
|
545 |
msgid "WordPress.org"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
549 |
#: includes/core/class-wcj-admin.php:93
|
550 |
msgid " to help us spread the word. Thank you from Booster team!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
554 |
msgid "Upgrade today to unlock these popular premium features:"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
558 |
msgid "+ PDF Invoices and Packing slips –"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
562 |
msgid ""
|
563 |
"Add ability to create Proforma Invoices, Credit Notes and Packaging slips"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
567 |
msgid "+ Empty Cart –"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
571 |
msgid ""
|
572 |
"customize empty cart button text, different button positions on cart page"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
576 |
msgid "+ Cart and checkout –"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
580 |
msgid "add multiple – custom fields, custom info blocks, check out file uploads"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
584 |
msgid "+ Mini cart –"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
588 |
msgid "More custom information options"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
592 |
msgid "+ Prices and currencies –"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
596 |
msgid "add more unlimited number of currencies to WooCommerce"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
600 |
msgid "+ Export options –"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
604 |
msgid "more fields enabled"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
608 |
msgid "+ Add to cart –"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
612 |
msgid ""
|
613 |
"customize add to cart messages, Button labels - multiple category groups "
|
614 |
"allowed+ +"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
618 |
msgid "+ More configuration options for payments and shipping"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/admin/class-wc-settings-jetpack.php:
|
622 |
msgid "Upgrade to Booster Plus"
|
623 |
msgstr ""
|
624 |
|
@@ -3541,7 +3497,7 @@ msgstr ""
|
|
3541 |
msgid "Booster: %s."
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: includes/class-wcj-pdf-invoicing.php:
|
3545 |
msgid "You are not allowed to view the invoice."
|
3546 |
msgstr ""
|
3547 |
|
@@ -3808,13 +3764,13 @@ msgstr ""
|
|
3808 |
#: includes/settings/wcj-settings-price-by-country.php:98
|
3809 |
#: includes/settings/wcj-settings-price-by-country.php:114
|
3810 |
#: includes/settings/wcj-settings-price-by-country.php:141
|
3811 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
3812 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
3813 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
3814 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
3815 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
3816 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
3817 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
3818 |
#: includes/settings/wcj-settings-price-by-user-role.php:19
|
3819 |
#: includes/settings/wcj-settings-price-by-user-role.php:46
|
3820 |
#: includes/settings/wcj-settings-price-by-user-role.php:93
|
@@ -4567,7 +4523,7 @@ msgid "Wrong user ID!"
|
|
4567 |
msgstr ""
|
4568 |
|
4569 |
#: includes/class-wcj-product-by-user.php:198
|
4570 |
-
#: includes/class-wcj-product-tabs.php:
|
4571 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:53
|
4572 |
#: includes/input-fields/wcj-product-input-fields-options.php:51
|
4573 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:95
|
@@ -4983,33 +4939,33 @@ msgid ""
|
|
4983 |
"remove WooCommerce default product tabs."
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#: includes/class-wcj-product-tabs.php:
|
4987 |
msgid "Booster: Custom Tabs"
|
4988 |
msgstr ""
|
4989 |
|
4990 |
-
#: includes/class-wcj-product-tabs.php:
|
4991 |
msgid "Total number of custom tabs"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
-
#: includes/class-wcj-product-tabs.php:
|
4995 |
#: includes/input-fields/class-wcj-product-input-fields-core.php:213
|
4996 |
msgid "Click \"Update\" product after you change this number."
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#: includes/class-wcj-product-tabs.php:
|
5000 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:123
|
5001 |
#: includes/settings/wcj-settings-product-tabs.php:79
|
5002 |
msgid "Key"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
-
#: includes/class-wcj-product-tabs.php:
|
5006 |
#: includes/input-fields/wcj-product-input-fields-options.php:21
|
5007 |
#: includes/settings/wcj-settings-related-products.php:59
|
5008 |
#: includes/settings/wcj-settings-related-products.php:84
|
5009 |
msgid "Order"
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#: includes/class-wcj-product-tabs.php:
|
5013 |
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:47
|
5014 |
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:73
|
5015 |
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:122
|
@@ -5028,25 +4984,25 @@ msgstr ""
|
|
5028 |
msgid "Content"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#: includes/class-wcj-product-tabs.php:
|
5032 |
#: includes/settings/wcj-settings-cart-customization.php:63
|
5033 |
#: includes/settings/wcj-settings-product-tabs.php:101
|
5034 |
msgid "Link"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
-
#: includes/class-wcj-product-tabs.php:
|
5038 |
#: includes/settings/wcj-settings-product-tabs.php:102
|
5039 |
msgid ""
|
5040 |
"If you wish to forward tab to new link, enter it here. In this case content "
|
5041 |
"is ignored. Leave blank to show content."
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
#: includes/class-wcj-product-tabs.php:
|
5045 |
#: includes/settings/wcj-settings-product-tabs.php:109
|
5046 |
msgid "Link - Open in New Window"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: includes/class-wcj-product-tabs.php:
|
5050 |
#: includes/input-fields/wcj-product-input-fields-options.php:101
|
5051 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
|
5052 |
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:60
|
@@ -5076,7 +5032,7 @@ msgstr ""
|
|
5076 |
msgid "No"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: includes/class-wcj-product-tabs.php:
|
5080 |
#: includes/input-fields/wcj-product-input-fields-options.php:94
|
5081 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
|
5082 |
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:61
|
@@ -5114,7 +5070,7 @@ msgstr ""
|
|
5114 |
msgid "Yes"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: includes/class-wcj-product-tabs.php:
|
5118 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:22
|
5119 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
|
5120 |
#: includes/settings/wcj-settings-checkout-core-fields.php:84
|
@@ -5125,7 +5081,7 @@ msgstr ""
|
|
5125 |
msgid "Disabled"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
-
#: includes/class-wcj-product-tabs.php:
|
5129 |
#: includes/settings/wcj-settings-product-tabs.php:71
|
5130 |
#: includes/settings/wcj-settings-product-tabs.php:271
|
5131 |
msgid "Custom Product Tab"
|
@@ -8763,7 +8719,7 @@ msgstr ""
|
|
8763 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:63
|
8764 |
#: includes/settings/wcj-settings-multicurrency.php:252
|
8765 |
#: includes/settings/wcj-settings-order-min-amount.php:77
|
8766 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
8767 |
#: includes/settings/wcj-settings-price-by-user-role.php:106
|
8768 |
#: includes/settings/wcj-settings-product-addons.php:230
|
8769 |
msgid "Advanced"
|
@@ -8911,18 +8867,18 @@ msgstr ""
|
|
8911 |
|
8912 |
#: includes/price-by-country/class-wcj-price-by-country-local.php:111
|
8913 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:67
|
8914 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
8915 |
msgid "Make empty price"
|
8916 |
msgstr ""
|
8917 |
|
8918 |
#: includes/price-by-country/class-wcj-price-by-country-local.php:215
|
8919 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:17
|
8920 |
#: includes/settings/wcj-settings-add-to-cart.php:50
|
8921 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
8922 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
8923 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
8924 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
8925 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
8926 |
msgid "Group"
|
8927 |
msgstr ""
|
8928 |
|
@@ -12050,7 +12006,7 @@ msgstr ""
|
|
12050 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:22
|
12051 |
#: includes/settings/wcj-settings-multicurrency.php:22
|
12052 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:68
|
12053 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
12054 |
msgid "Exchange Rates Updates"
|
12055 |
msgstr ""
|
12056 |
|
@@ -12164,7 +12120,7 @@ msgid "Custom Currency"
|
|
12164 |
msgstr ""
|
12165 |
|
12166 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:183
|
12167 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
12168 |
msgid "Exchange Rates"
|
12169 |
msgstr ""
|
12170 |
|
@@ -12184,7 +12140,7 @@ msgstr ""
|
|
12184 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:142
|
12185 |
#: includes/settings/wcj-settings-multicurrency.php:324
|
12186 |
#: includes/settings/wcj-settings-multicurrency.php:362
|
12187 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
12188 |
#: includes/settings/wcj-settings-price-formats.php:59
|
12189 |
msgid "Currency"
|
12190 |
msgstr ""
|
@@ -12257,7 +12213,7 @@ msgstr ""
|
|
12257 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:27
|
12258 |
#: includes/settings/wcj-settings-multicurrency.php:28
|
12259 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:73
|
12260 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
12261 |
msgid "Enter Rates Manually"
|
12262 |
msgstr ""
|
12263 |
|
@@ -12265,7 +12221,7 @@ msgstr ""
|
|
12265 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:28
|
12266 |
#: includes/settings/wcj-settings-multicurrency.php:29
|
12267 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:74
|
12268 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
12269 |
msgid "Automatically via Currency Exchange Rates module"
|
12270 |
msgstr ""
|
12271 |
|
@@ -12273,7 +12229,7 @@ msgstr ""
|
|
12273 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:31
|
12274 |
#: includes/settings/wcj-settings-multicurrency.php:32
|
12275 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:77
|
12276 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
12277 |
msgid "Visit"
|
12278 |
msgstr ""
|
12279 |
|
@@ -12281,7 +12237,7 @@ msgstr ""
|
|
12281 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:31
|
12282 |
#: includes/settings/wcj-settings-multicurrency.php:32
|
12283 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:79
|
12284 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
12285 |
msgid "Currency Exchange Rates module"
|
12286 |
msgstr ""
|
12287 |
|
@@ -13390,7 +13346,7 @@ msgstr ""
|
|
13390 |
#: includes/settings/wcj-settings-global-discount.php:201
|
13391 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:76
|
13392 |
#: includes/settings/wcj-settings-multicurrency.php:266
|
13393 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
13394 |
#: includes/settings/wcj-settings-price-by-user-role.php:111
|
13395 |
#: includes/settings/wcj-settings-product-addons.php:258
|
13396 |
#: includes/settings/wcj-settings-product-price-by-formula.php:127
|
@@ -13400,7 +13356,7 @@ msgstr ""
|
|
13400 |
#: includes/settings/wcj-settings-global-discount.php:202
|
13401 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:77
|
13402 |
#: includes/settings/wcj-settings-multicurrency.php:267
|
13403 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
13404 |
#: includes/settings/wcj-settings-price-by-user-role.php:112
|
13405 |
#: includes/settings/wcj-settings-product-addons.php:259
|
13406 |
#: includes/settings/wcj-settings-product-price-by-formula.php:128
|
@@ -13627,7 +13583,7 @@ msgstr ""
|
|
13627 |
|
13628 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:68
|
13629 |
#: includes/settings/wcj-settings-multicurrency.php:281
|
13630 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
13631 |
#: includes/settings/wcj-settings-product-price-by-formula.php:134
|
13632 |
msgid "Save Calculated Products Prices"
|
13633 |
msgstr ""
|
@@ -13787,12 +13743,12 @@ msgid ""
|
|
13787 |
msgstr ""
|
13788 |
|
13789 |
#: includes/settings/wcj-settings-multicurrency.php:121
|
13790 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
13791 |
msgid "Free Shipping"
|
13792 |
msgstr ""
|
13793 |
|
13794 |
#: includes/settings/wcj-settings-multicurrency.php:124
|
13795 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
13796 |
msgid "Converts minimum amount from WooCommerce Free Shipping native method."
|
13797 |
msgstr ""
|
13798 |
|
@@ -13801,7 +13757,7 @@ msgid "WooCommerce Fixed Coupons"
|
|
13801 |
msgstr ""
|
13802 |
|
13803 |
#: includes/settings/wcj-settings-multicurrency.php:140
|
13804 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
13805 |
msgid ""
|
13806 |
"When a fixed coupon is used its value changes according to the current "
|
13807 |
"currency."
|
@@ -13941,7 +13897,7 @@ msgid ""
|
|
13941 |
msgstr ""
|
13942 |
|
13943 |
#: includes/settings/wcj-settings-multicurrency.php:282
|
13944 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
13945 |
#: includes/settings/wcj-settings-product-price-by-formula.php:135
|
13946 |
msgid ""
|
13947 |
"This may help if you are experiencing compatibility issues with other plugins."
|
@@ -15836,7 +15792,7 @@ msgid "Replace"
|
|
15836 |
msgstr ""
|
15837 |
|
15838 |
#: includes/settings/wcj-settings-pdf-invoicing-display.php:25
|
15839 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
15840 |
#: includes/settings/wcj-settings-shipping.php:30
|
15841 |
msgid "Admin Title"
|
15842 |
msgstr ""
|
@@ -16039,6 +15995,10 @@ msgstr ""
|
|
16039 |
msgid "Template"
|
16040 |
msgstr ""
|
16041 |
|
|
|
|
|
|
|
|
|
16042 |
#: includes/settings/wcj-settings-pdf-invoicing-page.php:22
|
16043 |
msgid "Page Orientation"
|
16044 |
msgstr ""
|
@@ -16334,140 +16294,145 @@ msgstr ""
|
|
16334 |
msgid "Disable Price by Country for Bots"
|
16335 |
msgstr ""
|
16336 |
|
16337 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
|
|
|
|
|
|
|
|
|
|
16338 |
#: includes/settings/wcj-settings-product-price-by-formula.php:108
|
16339 |
msgid "Disable Quick Edit Product For Admin Scope"
|
16340 |
msgstr ""
|
16341 |
|
16342 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16343 |
#: includes/settings/wcj-settings-product-price-by-formula.php:109
|
16344 |
msgid "Disable For Admin Quick Edit Scope."
|
16345 |
msgstr ""
|
16346 |
|
16347 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16348 |
msgid "Disable module on Edit Product For Admin scope."
|
16349 |
msgstr ""
|
16350 |
|
16351 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16352 |
#: includes/settings/wcj-settings-product-price-by-formula.php:110
|
16353 |
msgid ""
|
16354 |
"For example if you use Quick Edit Product and donot want change the deafult "
|
16355 |
"price then the box ticked"
|
16356 |
msgstr ""
|
16357 |
|
16358 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16359 |
msgid "Price Filter Widget and Sorting by Price Support"
|
16360 |
msgstr ""
|
16361 |
|
16362 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16363 |
msgid "Recalculate price filter widget and sorting by price product prices."
|
16364 |
msgstr ""
|
16365 |
|
16366 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16367 |
msgid "WooCommerce Coupons"
|
16368 |
msgstr ""
|
16369 |
|
16370 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16371 |
msgid "Woo Discount Rules"
|
16372 |
msgstr ""
|
16373 |
|
16374 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16375 |
#, php-format
|
16376 |
msgid ""
|
16377 |
"Adds compatibility with <a href=\"%s\" target=\"_blank\">Woo Discount Rules</"
|
16378 |
"a> plugin."
|
16379 |
msgstr ""
|
16380 |
|
16381 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16382 |
#, php-format
|
16383 |
msgid ""
|
16384 |
"If it doesn't work properly try to enable <a href=\"%s\">redirect to the cart "
|
16385 |
"page after successful addition</a> option."
|
16386 |
msgstr ""
|
16387 |
|
16388 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16389 |
msgid "WooCommerce Points and Rewards"
|
16390 |
msgstr ""
|
16391 |
|
16392 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16393 |
#, php-format
|
16394 |
msgid ""
|
16395 |
"Adds compatibility with <a href=\"%s\" target=\"_blank\">WooCommerce Points "
|
16396 |
"and Rewards</a> plugin."
|
16397 |
msgstr ""
|
16398 |
|
16399 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16400 |
msgid "User IP Detection Method"
|
16401 |
msgstr ""
|
16402 |
|
16403 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16404 |
msgid "Price Format Method"
|
16405 |
msgstr ""
|
16406 |
|
16407 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16408 |
msgid "The moment \"Pretty Price\" and \"Rounding\" will be applied"
|
16409 |
msgstr ""
|
16410 |
|
16411 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16412 |
msgid "get_price()"
|
16413 |
msgstr ""
|
16414 |
|
16415 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16416 |
msgid "wc_get_price_to_display()"
|
16417 |
msgstr ""
|
16418 |
|
16419 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16420 |
msgid "Save Country Group ID"
|
16421 |
msgstr ""
|
16422 |
|
16423 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16424 |
msgid ""
|
16425 |
"Try to disable it if the country detection is not correct, most probably if "
|
16426 |
"\"Override Country Options\" is enabled."
|
16427 |
msgstr ""
|
16428 |
|
16429 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16430 |
msgid "Country Groups"
|
16431 |
msgstr ""
|
16432 |
|
16433 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16434 |
msgid "Countries Selection"
|
16435 |
msgstr ""
|
16436 |
|
16437 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16438 |
msgid "Choose how do you want to enter countries groups in admin."
|
16439 |
msgstr ""
|
16440 |
|
16441 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16442 |
msgid "Comma separated list"
|
16443 |
msgstr ""
|
16444 |
|
16445 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16446 |
msgid "Multiselect"
|
16447 |
msgstr ""
|
16448 |
|
16449 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16450 |
#: includes/settings/wcj-settings-product-by-condition.php:85
|
16451 |
#: includes/settings/wcj-settings-related-products.php:164
|
16452 |
msgid "Chosen select"
|
16453 |
msgstr ""
|
16454 |
|
16455 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16456 |
msgid "Autogenerate Groups"
|
16457 |
msgstr ""
|
16458 |
|
16459 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16460 |
msgid "Groups Number"
|
16461 |
msgstr ""
|
16462 |
|
16463 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16464 |
msgid ""
|
16465 |
"Countries. List of comma separated country codes.<br>For country codes and "
|
16466 |
"predefined sets visit <a href=\"https://booster.io/country-codes/\" target="
|
16467 |
"\"_blank\">https://booster.io/country-codes/</a>"
|
16468 |
msgstr ""
|
16469 |
|
16470 |
-
#: includes/settings/wcj-settings-price-by-country.php:
|
16471 |
msgid "Multiply Price by"
|
16472 |
msgstr ""
|
16473 |
|
@@ -20758,7 +20723,7 @@ msgstr ""
|
|
20758 |
msgid "Attribute \"name\" is required!"
|
20759 |
msgstr ""
|
20760 |
|
20761 |
-
#: includes/shortcodes/class-wcj-shortcodes-orders.php:
|
20762 |
#, php-format
|
20763 |
msgid "Refund #%1$s - %2$s"
|
20764 |
msgstr ""
|
44 |
#: includes/class-wcj-track-users.php:164 includes/class-wcj-track-users.php:252
|
45 |
#: includes/classes/class-wcj-module.php:582
|
46 |
#: includes/classes/class-wcj-module.php:782
|
47 |
+
#: includes/settings/wcj-settings-price-by-country.php:257
|
48 |
msgid "Booster"
|
49 |
msgstr ""
|
50 |
|
73 |
|
74 |
#: includes/admin/class-wc-settings-jetpack.php:245
|
75 |
#: includes/admin/class-wc-settings-jetpack.php:312
|
76 |
+
#: includes/admin/class-wc-settings-jetpack.php:848
|
77 |
#: includes/admin/wcj-modules-cats.php:14 includes/class-wcj-admin-bar.php:214
|
78 |
#: includes/class-wcj-my-account.php:34
|
79 |
msgid "Dashboard"
|
114 |
#: includes/admin/class-wc-settings-jetpack.php:386
|
115 |
#: includes/class-wcj-admin-bar.php:384
|
116 |
#: includes/settings/wcj-settings-emails-verification.php:146
|
117 |
+
#: includes/settings/wcj-settings-price-by-country.php:256
|
118 |
msgid "WooCommerce"
|
119 |
msgstr ""
|
120 |
|
131 |
msgstr ""
|
132 |
|
133 |
#: includes/admin/class-wc-settings-jetpack.php:465
|
134 |
+
#: includes/admin/class-wc-settings-jetpack.php:966
|
135 |
#: includes/class-wcj-export-import.php:26
|
136 |
msgid "Export"
|
137 |
msgstr ""
|
141 |
msgstr ""
|
142 |
|
143 |
#: includes/admin/class-wc-settings-jetpack.php:469
|
144 |
+
#: includes/admin/class-wc-settings-jetpack.php:957
|
145 |
#: includes/class-wcj-purchase-data.php:104
|
146 |
msgid "Import"
|
147 |
msgstr ""
|
156 |
msgstr ""
|
157 |
|
158 |
#: includes/admin/class-wc-settings-jetpack.php:476
|
159 |
+
#: includes/admin/class-wc-settings-jetpack.php:977
|
160 |
msgid "Reset"
|
161 |
msgstr ""
|
162 |
|
169 |
msgstr ""
|
170 |
|
171 |
#: includes/admin/class-wc-settings-jetpack.php:482
|
172 |
+
#: includes/admin/class-wc-settings-jetpack.php:986
|
173 |
msgid "Reset meta"
|
174 |
msgstr ""
|
175 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: includes/admin/class-wc-settings-jetpack.php:591
|
209 |
+
#: includes/admin/class-wc-settings-jetpack.php:995
|
210 |
#: includes/class-wcj-admin-bar.php:172
|
211 |
#: includes/classes/class-wcj-module.php:924
|
212 |
msgid "Documentation"
|
316 |
msgid "My Account"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/admin/class-wc-settings-jetpack.php:838
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
msgid "Get Booster Plus"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/admin/class-wc-settings-jetpack.php:845
|
324 |
msgid "Getting Started"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/admin/class-wc-settings-jetpack.php:849
|
328 |
msgid "Navigating Categories"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/admin/class-wc-settings-jetpack.php:850
|
332 |
msgid "How to get started with booster"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/admin/class-wc-settings-jetpack.php:855
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
msgid "Frequently Asked Questions"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/admin/class-wc-settings-jetpack.php:860
|
340 |
msgid "Do I need to have coding skills to use Booster Plus?"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/admin/class-wc-settings-jetpack.php:864
|
344 |
msgid ""
|
345 |
"Absolutely not. You can configure pretty much everything Booster Plus has to "
|
346 |
"offer without any coding knowledge."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/admin/class-wc-settings-jetpack.php:869
|
350 |
msgid "Will Booster Plus slow down my website?"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/admin/class-wc-settings-jetpack.php:873
|
354 |
msgid ""
|
355 |
"Absolutely not. Booster Plus is carefully built with performance in mind."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/admin/class-wc-settings-jetpack.php:878
|
359 |
msgid "Do you offer refunds?"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/admin/class-wc-settings-jetpack.php:882
|
363 |
#, php-format
|
364 |
msgid ""
|
365 |
"If you are not completely satisfied with Booster Plus within the fist 30 "
|
367 |
"no questions asked."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: includes/admin/class-wc-settings-jetpack.php:887
|
371 |
msgid "Can I use Booster Plus on client sites?"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/admin/class-wc-settings-jetpack.php:891
|
375 |
msgid ""
|
376 |
"Yes, you can use Booster Plus on client sites. You can purchase the multiple "
|
377 |
"sites license of Booster Plus."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/admin/class-wc-settings-jetpack.php:896
|
381 |
msgid "Do you have an affiliate program?"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: includes/admin/class-wc-settings-jetpack.php:900
|
385 |
msgid "Yes, We do have an affiliate program. "
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: includes/admin/class-wc-settings-jetpack.php:900
|
389 |
msgid "Click here"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: includes/admin/class-wc-settings-jetpack.php:900
|
393 |
msgid " for the details."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: includes/admin/class-wc-settings-jetpack.php:905
|
397 |
msgid ""
|
398 |
"Why should I choose the Booster Plus suite over other individual plugins?"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/admin/class-wc-settings-jetpack.php:909
|
402 |
msgid ""
|
403 |
"Oh, that's an easy one! Implementing just a few modules from the Booster Plus "
|
404 |
"suite is more cost-effective than using dozens of individual plugins often "
|
410 |
"your WooCommerce site easily."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: includes/admin/class-wc-settings-jetpack.php:914
|
414 |
msgid "What features does Booster Plus have?"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: includes/admin/class-wc-settings-jetpack.php:918
|
418 |
msgid "You can see all the features at "
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: includes/admin/class-wc-settings-jetpack.php:918
|
422 |
msgid "About Booster"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/admin/class-wc-settings-jetpack.php:918
|
426 |
msgid " page."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/admin/class-wc-settings-jetpack.php:922
|
430 |
msgid "Still have a question?"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/admin/class-wc-settings-jetpack.php:923
|
434 |
msgid "CONTACT BOOSTER SUPPORT"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/admin/class-wc-settings-jetpack.php:929
|
438 |
msgid "Connect with Booster"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/admin/class-wc-settings-jetpack.php:933
|
442 |
msgid "BOOSTER WEBSITE"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/admin/class-wc-settings-jetpack.php:947
|
446 |
#: includes/class-wcj-general.php:218 includes/class-wcj-product-by-user.php:198
|
447 |
#: includes/settings/wcj-settings-pdf-invoicing-advanced.php:157
|
448 |
#: includes/tools/class-wcj-order-statuses-tool.php:145
|
450 |
msgid "Actions"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/admin/class-wc-settings-jetpack.php:958
|
454 |
msgid "Import Booster options"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/admin/class-wc-settings-jetpack.php:967
|
458 |
msgid "Export Booster options"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/admin/class-wc-settings-jetpack.php:978
|
462 |
msgid "Reset all Booster's options"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/admin/class-wc-settings-jetpack.php:987
|
466 |
msgid "Reset all Booster's meta"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/admin/class-wc-settings-jetpack.php:1002
|
470 |
msgid "Here you can find all documentation of Booster"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/admin/class-wc-settings-jetpack.php:1004
|
474 |
msgid "See Documentation"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/admin/class-wc-settings-jetpack.php:1011
|
478 |
msgid "Latest updates"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: includes/admin/class-wc-settings-jetpack.php:1014
|
482 |
msgid "Version "
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/admin/class-wc-settings-jetpack.php:1019
|
486 |
msgid "SEE MORE"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: includes/admin/class-wc-settings-jetpack.php:1030
|
490 |
#: includes/core/class-wcj-admin.php:85
|
491 |
msgid "Please rate "
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/admin/class-wc-settings-jetpack.php:1030
|
495 |
#: includes/core/class-wcj-admin.php:85
|
496 |
msgid "Booster for Woocommerce"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: includes/admin/class-wc-settings-jetpack.php:1038
|
500 |
#: includes/core/class-wcj-admin.php:93
|
501 |
msgid "WordPress.org"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/admin/class-wc-settings-jetpack.php:1038
|
505 |
#: includes/core/class-wcj-admin.php:93
|
506 |
msgid " to help us spread the word. Thank you from Booster team!"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/admin/class-wc-settings-jetpack.php:1042
|
510 |
msgid "Upgrade today to unlock these popular premium features:"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/admin/class-wc-settings-jetpack.php:1044
|
514 |
msgid "+ PDF Invoices and Packing slips –"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/admin/class-wc-settings-jetpack.php:1044
|
518 |
msgid ""
|
519 |
"Add ability to create Proforma Invoices, Credit Notes and Packaging slips"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: includes/admin/class-wc-settings-jetpack.php:1045
|
523 |
msgid "+ Empty Cart –"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: includes/admin/class-wc-settings-jetpack.php:1045
|
527 |
msgid ""
|
528 |
"customize empty cart button text, different button positions on cart page"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: includes/admin/class-wc-settings-jetpack.php:1046
|
532 |
msgid "+ Cart and checkout –"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: includes/admin/class-wc-settings-jetpack.php:1046
|
536 |
msgid "add multiple – custom fields, custom info blocks, check out file uploads"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: includes/admin/class-wc-settings-jetpack.php:1047
|
540 |
msgid "+ Mini cart –"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: includes/admin/class-wc-settings-jetpack.php:1047
|
544 |
msgid "More custom information options"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/admin/class-wc-settings-jetpack.php:1048
|
548 |
msgid "+ Prices and currencies –"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/admin/class-wc-settings-jetpack.php:1048
|
552 |
msgid "add more unlimited number of currencies to WooCommerce"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: includes/admin/class-wc-settings-jetpack.php:1049
|
556 |
msgid "+ Export options –"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: includes/admin/class-wc-settings-jetpack.php:1049
|
560 |
msgid "more fields enabled"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: includes/admin/class-wc-settings-jetpack.php:1050
|
564 |
msgid "+ Add to cart –"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: includes/admin/class-wc-settings-jetpack.php:1050
|
568 |
msgid ""
|
569 |
"customize add to cart messages, Button labels - multiple category groups "
|
570 |
"allowed+ +"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/admin/class-wc-settings-jetpack.php:1051
|
574 |
msgid "+ More configuration options for payments and shipping"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/admin/class-wc-settings-jetpack.php:1054
|
578 |
msgid "Upgrade to Booster Plus"
|
579 |
msgstr ""
|
580 |
|
3497 |
msgid "Booster: %s."
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: includes/class-wcj-pdf-invoicing.php:461
|
3501 |
msgid "You are not allowed to view the invoice."
|
3502 |
msgstr ""
|
3503 |
|
3764 |
#: includes/settings/wcj-settings-price-by-country.php:98
|
3765 |
#: includes/settings/wcj-settings-price-by-country.php:114
|
3766 |
#: includes/settings/wcj-settings-price-by-country.php:141
|
3767 |
+
#: includes/settings/wcj-settings-price-by-country.php:191
|
3768 |
+
#: includes/settings/wcj-settings-price-by-country.php:201
|
3769 |
+
#: includes/settings/wcj-settings-price-by-country.php:210
|
3770 |
+
#: includes/settings/wcj-settings-price-by-country.php:219
|
3771 |
+
#: includes/settings/wcj-settings-price-by-country.php:228
|
3772 |
+
#: includes/settings/wcj-settings-price-by-country.php:274
|
3773 |
+
#: includes/settings/wcj-settings-price-by-country.php:282
|
3774 |
#: includes/settings/wcj-settings-price-by-user-role.php:19
|
3775 |
#: includes/settings/wcj-settings-price-by-user-role.php:46
|
3776 |
#: includes/settings/wcj-settings-price-by-user-role.php:93
|
4523 |
msgstr ""
|
4524 |
|
4525 |
#: includes/class-wcj-product-by-user.php:198
|
4526 |
+
#: includes/class-wcj-product-tabs.php:622
|
4527 |
#: includes/gateways/class-wc-gateway-wcj-custom.php:53
|
4528 |
#: includes/input-fields/wcj-product-input-fields-options.php:51
|
4529 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-addons.php:95
|
4939 |
"remove WooCommerce default product tabs."
|
4940 |
msgstr ""
|
4941 |
|
4942 |
+
#: includes/class-wcj-product-tabs.php:579
|
4943 |
msgid "Booster: Custom Tabs"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
+
#: includes/class-wcj-product-tabs.php:606
|
4947 |
msgid "Total number of custom tabs"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
+
#: includes/class-wcj-product-tabs.php:612
|
4951 |
#: includes/input-fields/class-wcj-product-input-fields-core.php:213
|
4952 |
msgid "Click \"Update\" product after you change this number."
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: includes/class-wcj-product-tabs.php:627
|
4956 |
#: includes/settings/wcj-settings-checkout-custom-fields.php:123
|
4957 |
#: includes/settings/wcj-settings-product-tabs.php:79
|
4958 |
msgid "Key"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
+
#: includes/class-wcj-product-tabs.php:632
|
4962 |
#: includes/input-fields/wcj-product-input-fields-options.php:21
|
4963 |
#: includes/settings/wcj-settings-related-products.php:59
|
4964 |
#: includes/settings/wcj-settings-related-products.php:84
|
4965 |
msgid "Order"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
+
#: includes/class-wcj-product-tabs.php:637
|
4969 |
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:47
|
4970 |
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:73
|
4971 |
#: includes/settings/wcj-settings-add-to-cart-button-visibility.php:122
|
4984 |
msgid "Content"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: includes/class-wcj-product-tabs.php:642
|
4988 |
#: includes/settings/wcj-settings-cart-customization.php:63
|
4989 |
#: includes/settings/wcj-settings-product-tabs.php:101
|
4990 |
msgid "Link"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
+
#: includes/class-wcj-product-tabs.php:644
|
4994 |
#: includes/settings/wcj-settings-product-tabs.php:102
|
4995 |
msgid ""
|
4996 |
"If you wish to forward tab to new link, enter it here. In this case content "
|
4997 |
"is ignored. Leave blank to show content."
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: includes/class-wcj-product-tabs.php:648
|
5001 |
#: includes/settings/wcj-settings-product-tabs.php:109
|
5002 |
msgid "Link - Open in New Window"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
+
#: includes/class-wcj-product-tabs.php:651
|
5006 |
#: includes/input-fields/wcj-product-input-fields-options.php:101
|
5007 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:20
|
5008 |
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:60
|
5032 |
msgid "No"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: includes/class-wcj-product-tabs.php:652
|
5036 |
#: includes/input-fields/wcj-product-input-fields-options.php:94
|
5037 |
#: includes/settings/meta-box/wcj-settings-meta-box-custom-css.php:19
|
5038 |
#: includes/settings/meta-box/wcj-settings-meta-box-multicurrency.php:61
|
5070 |
msgid "Yes"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
+
#: includes/class-wcj-product-tabs.php:660
|
5074 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-date.php:22
|
5075 |
#: includes/settings/meta-box/wcj-settings-meta-box-product-by-time.php:19
|
5076 |
#: includes/settings/wcj-settings-checkout-core-fields.php:84
|
5081 |
msgid "Disabled"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: includes/class-wcj-product-tabs.php:663
|
5085 |
#: includes/settings/wcj-settings-product-tabs.php:71
|
5086 |
#: includes/settings/wcj-settings-product-tabs.php:271
|
5087 |
msgid "Custom Product Tab"
|
8719 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:63
|
8720 |
#: includes/settings/wcj-settings-multicurrency.php:252
|
8721 |
#: includes/settings/wcj-settings-order-min-amount.php:77
|
8722 |
+
#: includes/settings/wcj-settings-price-by-country.php:239
|
8723 |
#: includes/settings/wcj-settings-price-by-user-role.php:106
|
8724 |
#: includes/settings/wcj-settings-product-addons.php:230
|
8725 |
msgid "Advanced"
|
8867 |
|
8868 |
#: includes/price-by-country/class-wcj-price-by-country-local.php:111
|
8869 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:67
|
8870 |
+
#: includes/settings/wcj-settings-price-by-country.php:433
|
8871 |
msgid "Make empty price"
|
8872 |
msgstr ""
|
8873 |
|
8874 |
#: includes/price-by-country/class-wcj-price-by-country-local.php:215
|
8875 |
#: includes/settings/meta-box/wcj-settings-meta-box-price-by-country.php:17
|
8876 |
#: includes/settings/wcj-settings-add-to-cart.php:50
|
8877 |
+
#: includes/settings/wcj-settings-price-by-country.php:327
|
8878 |
+
#: includes/settings/wcj-settings-price-by-country.php:328
|
8879 |
+
#: includes/settings/wcj-settings-price-by-country.php:333
|
8880 |
+
#: includes/settings/wcj-settings-price-by-country.php:381
|
8881 |
+
#: includes/settings/wcj-settings-price-by-country.php:424
|
8882 |
msgid "Group"
|
8883 |
msgstr ""
|
8884 |
|
12006 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:22
|
12007 |
#: includes/settings/wcj-settings-multicurrency.php:22
|
12008 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:68
|
12009 |
+
#: includes/settings/wcj-settings-price-by-country.php:397
|
12010 |
msgid "Exchange Rates Updates"
|
12011 |
msgstr ""
|
12012 |
|
12120 |
msgstr ""
|
12121 |
|
12122 |
#: includes/settings/wcj-settings-currency-exchange-rates.php:183
|
12123 |
+
#: includes/settings/wcj-settings-price-by-country.php:392
|
12124 |
msgid "Exchange Rates"
|
12125 |
msgstr ""
|
12126 |
|
12140 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:142
|
12141 |
#: includes/settings/wcj-settings-multicurrency.php:324
|
12142 |
#: includes/settings/wcj-settings-multicurrency.php:362
|
12143 |
+
#: includes/settings/wcj-settings-price-by-country.php:372
|
12144 |
#: includes/settings/wcj-settings-price-formats.php:59
|
12145 |
msgid "Currency"
|
12146 |
msgstr ""
|
12213 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:27
|
12214 |
#: includes/settings/wcj-settings-multicurrency.php:28
|
12215 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:73
|
12216 |
+
#: includes/settings/wcj-settings-price-by-country.php:402
|
12217 |
msgid "Enter Rates Manually"
|
12218 |
msgstr ""
|
12219 |
|
12221 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:28
|
12222 |
#: includes/settings/wcj-settings-multicurrency.php:29
|
12223 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:74
|
12224 |
+
#: includes/settings/wcj-settings-price-by-country.php:403
|
12225 |
msgid "Automatically via Currency Exchange Rates module"
|
12226 |
msgstr ""
|
12227 |
|
12229 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:31
|
12230 |
#: includes/settings/wcj-settings-multicurrency.php:32
|
12231 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:77
|
12232 |
+
#: includes/settings/wcj-settings-price-by-country.php:406
|
12233 |
msgid "Visit"
|
12234 |
msgstr ""
|
12235 |
|
12237 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:31
|
12238 |
#: includes/settings/wcj-settings-multicurrency.php:32
|
12239 |
#: includes/settings/wcj-settings-payment-gateways-currency.php:79
|
12240 |
+
#: includes/settings/wcj-settings-price-by-country.php:406
|
12241 |
msgid "Currency Exchange Rates module"
|
12242 |
msgstr ""
|
12243 |
|
13346 |
#: includes/settings/wcj-settings-global-discount.php:201
|
13347 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:76
|
13348 |
#: includes/settings/wcj-settings-multicurrency.php:266
|
13349 |
+
#: includes/settings/wcj-settings-price-by-country.php:244
|
13350 |
#: includes/settings/wcj-settings-price-by-user-role.php:111
|
13351 |
#: includes/settings/wcj-settings-product-addons.php:258
|
13352 |
#: includes/settings/wcj-settings-product-price-by-formula.php:127
|
13356 |
#: includes/settings/wcj-settings-global-discount.php:202
|
13357 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:77
|
13358 |
#: includes/settings/wcj-settings-multicurrency.php:267
|
13359 |
+
#: includes/settings/wcj-settings-price-by-country.php:245
|
13360 |
#: includes/settings/wcj-settings-price-by-user-role.php:112
|
13361 |
#: includes/settings/wcj-settings-product-addons.php:259
|
13362 |
#: includes/settings/wcj-settings-product-price-by-formula.php:128
|
13583 |
|
13584 |
#: includes/settings/wcj-settings-multicurrency-base-price.php:68
|
13585 |
#: includes/settings/wcj-settings-multicurrency.php:281
|
13586 |
+
#: includes/settings/wcj-settings-price-by-country.php:272
|
13587 |
#: includes/settings/wcj-settings-product-price-by-formula.php:134
|
13588 |
msgid "Save Calculated Products Prices"
|
13589 |
msgstr ""
|
13743 |
msgstr ""
|
13744 |
|
13745 |
#: includes/settings/wcj-settings-multicurrency.php:121
|
13746 |
+
#: includes/settings/wcj-settings-price-by-country.php:200
|
13747 |
msgid "Free Shipping"
|
13748 |
msgstr ""
|
13749 |
|
13750 |
#: includes/settings/wcj-settings-multicurrency.php:124
|
13751 |
+
#: includes/settings/wcj-settings-price-by-country.php:203
|
13752 |
msgid "Converts minimum amount from WooCommerce Free Shipping native method."
|
13753 |
msgstr ""
|
13754 |
|
13757 |
msgstr ""
|
13758 |
|
13759 |
#: includes/settings/wcj-settings-multicurrency.php:140
|
13760 |
+
#: includes/settings/wcj-settings-price-by-country.php:211
|
13761 |
msgid ""
|
13762 |
"When a fixed coupon is used its value changes according to the current "
|
13763 |
"currency."
|
13897 |
msgstr ""
|
13898 |
|
13899 |
#: includes/settings/wcj-settings-multicurrency.php:282
|
13900 |
+
#: includes/settings/wcj-settings-price-by-country.php:273
|
13901 |
#: includes/settings/wcj-settings-product-price-by-formula.php:135
|
13902 |
msgid ""
|
13903 |
"This may help if you are experiencing compatibility issues with other plugins."
|
15792 |
msgstr ""
|
15793 |
|
15794 |
#: includes/settings/wcj-settings-pdf-invoicing-display.php:25
|
15795 |
+
#: includes/settings/wcj-settings-price-by-country.php:379
|
15796 |
#: includes/settings/wcj-settings-shipping.php:30
|
15797 |
msgid "Admin Title"
|
15798 |
msgstr ""
|
15995 |
msgid "Template"
|
15996 |
msgstr ""
|
15997 |
|
15998 |
+
#: includes/settings/wcj-settings-pdf-invoicing-numbering.php:62
|
15999 |
+
msgid "Bulk Invoice Number DESC Order"
|
16000 |
+
msgstr ""
|
16001 |
+
|
16002 |
#: includes/settings/wcj-settings-pdf-invoicing-page.php:22
|
16003 |
msgid "Page Orientation"
|
16004 |
msgstr ""
|
16294 |
msgid "Disable Price by Country for Bots"
|
16295 |
msgstr ""
|
16296 |
|
16297 |
+
#: includes/settings/wcj-settings-price-by-country.php:172
|
16298 |
+
#: includes/settings/wcj-settings-price-by-country.php:173
|
16299 |
+
msgid "Active B2B Plugin Price Section"
|
16300 |
+
msgstr ""
|
16301 |
+
|
16302 |
+
#: includes/settings/wcj-settings-price-by-country.php:181
|
16303 |
#: includes/settings/wcj-settings-product-price-by-formula.php:108
|
16304 |
msgid "Disable Quick Edit Product For Admin Scope"
|
16305 |
msgstr ""
|
16306 |
|
16307 |
+
#: includes/settings/wcj-settings-price-by-country.php:182
|
16308 |
#: includes/settings/wcj-settings-product-price-by-formula.php:109
|
16309 |
msgid "Disable For Admin Quick Edit Scope."
|
16310 |
msgstr ""
|
16311 |
|
16312 |
+
#: includes/settings/wcj-settings-price-by-country.php:183
|
16313 |
msgid "Disable module on Edit Product For Admin scope."
|
16314 |
msgstr ""
|
16315 |
|
16316 |
+
#: includes/settings/wcj-settings-price-by-country.php:183
|
16317 |
#: includes/settings/wcj-settings-product-price-by-formula.php:110
|
16318 |
msgid ""
|
16319 |
"For example if you use Quick Edit Product and donot want change the deafult "
|
16320 |
"price then the box ticked"
|
16321 |
msgstr ""
|
16322 |
|
16323 |
+
#: includes/settings/wcj-settings-price-by-country.php:190
|
16324 |
msgid "Price Filter Widget and Sorting by Price Support"
|
16325 |
msgstr ""
|
16326 |
|
16327 |
+
#: includes/settings/wcj-settings-price-by-country.php:194
|
16328 |
msgid "Recalculate price filter widget and sorting by price product prices."
|
16329 |
msgstr ""
|
16330 |
|
16331 |
+
#: includes/settings/wcj-settings-price-by-country.php:209
|
16332 |
msgid "WooCommerce Coupons"
|
16333 |
msgstr ""
|
16334 |
|
16335 |
+
#: includes/settings/wcj-settings-price-by-country.php:217
|
16336 |
msgid "Woo Discount Rules"
|
16337 |
msgstr ""
|
16338 |
|
16339 |
+
#: includes/settings/wcj-settings-price-by-country.php:220
|
16340 |
#, php-format
|
16341 |
msgid ""
|
16342 |
"Adds compatibility with <a href=\"%s\" target=\"_blank\">Woo Discount Rules</"
|
16343 |
"a> plugin."
|
16344 |
msgstr ""
|
16345 |
|
16346 |
+
#: includes/settings/wcj-settings-price-by-country.php:220
|
16347 |
#, php-format
|
16348 |
msgid ""
|
16349 |
"If it doesn't work properly try to enable <a href=\"%s\">redirect to the cart "
|
16350 |
"page after successful addition</a> option."
|
16351 |
msgstr ""
|
16352 |
|
16353 |
+
#: includes/settings/wcj-settings-price-by-country.php:226
|
16354 |
msgid "WooCommerce Points and Rewards"
|
16355 |
msgstr ""
|
16356 |
|
16357 |
+
#: includes/settings/wcj-settings-price-by-country.php:229
|
16358 |
#, php-format
|
16359 |
msgid ""
|
16360 |
"Adds compatibility with <a href=\"%s\" target=\"_blank\">WooCommerce Points "
|
16361 |
"and Rewards</a> plugin."
|
16362 |
msgstr ""
|
16363 |
|
16364 |
+
#: includes/settings/wcj-settings-price-by-country.php:251
|
16365 |
msgid "User IP Detection Method"
|
16366 |
msgstr ""
|
16367 |
|
16368 |
+
#: includes/settings/wcj-settings-price-by-country.php:261
|
16369 |
msgid "Price Format Method"
|
16370 |
msgstr ""
|
16371 |
|
16372 |
+
#: includes/settings/wcj-settings-price-by-country.php:262
|
16373 |
msgid "The moment \"Pretty Price\" and \"Rounding\" will be applied"
|
16374 |
msgstr ""
|
16375 |
|
16376 |
+
#: includes/settings/wcj-settings-price-by-country.php:267
|
16377 |
msgid "get_price()"
|
16378 |
msgstr ""
|
16379 |
|
16380 |
+
#: includes/settings/wcj-settings-price-by-country.php:268
|
16381 |
msgid "wc_get_price_to_display()"
|
16382 |
msgstr ""
|
16383 |
|
16384 |
+
#: includes/settings/wcj-settings-price-by-country.php:280
|
16385 |
msgid "Save Country Group ID"
|
16386 |
msgstr ""
|
16387 |
|
16388 |
+
#: includes/settings/wcj-settings-price-by-country.php:281
|
16389 |
msgid ""
|
16390 |
"Try to disable it if the country detection is not correct, most probably if "
|
16391 |
"\"Override Country Options\" is enabled."
|
16392 |
msgstr ""
|
16393 |
|
16394 |
+
#: includes/settings/wcj-settings-price-by-country.php:292
|
16395 |
msgid "Country Groups"
|
16396 |
msgstr ""
|
16397 |
|
16398 |
+
#: includes/settings/wcj-settings-price-by-country.php:297
|
16399 |
msgid "Countries Selection"
|
16400 |
msgstr ""
|
16401 |
|
16402 |
+
#: includes/settings/wcj-settings-price-by-country.php:298
|
16403 |
msgid "Choose how do you want to enter countries groups in admin."
|
16404 |
msgstr ""
|
16405 |
|
16406 |
+
#: includes/settings/wcj-settings-price-by-country.php:303
|
16407 |
msgid "Comma separated list"
|
16408 |
msgstr ""
|
16409 |
|
16410 |
+
#: includes/settings/wcj-settings-price-by-country.php:304
|
16411 |
msgid "Multiselect"
|
16412 |
msgstr ""
|
16413 |
|
16414 |
+
#: includes/settings/wcj-settings-price-by-country.php:305
|
16415 |
#: includes/settings/wcj-settings-product-by-condition.php:85
|
16416 |
#: includes/settings/wcj-settings-related-products.php:164
|
16417 |
msgid "Chosen select"
|
16418 |
msgstr ""
|
16419 |
|
16420 |
+
#: includes/settings/wcj-settings-price-by-country.php:309
|
16421 |
msgid "Autogenerate Groups"
|
16422 |
msgstr ""
|
16423 |
|
16424 |
+
#: includes/settings/wcj-settings-price-by-country.php:315
|
16425 |
msgid "Groups Number"
|
16426 |
msgstr ""
|
16427 |
|
16428 |
+
#: includes/settings/wcj-settings-price-by-country.php:339
|
16429 |
msgid ""
|
16430 |
"Countries. List of comma separated country codes.<br>For country codes and "
|
16431 |
"predefined sets visit <a href=\"https://booster.io/country-codes/\" target="
|
16432 |
"\"_blank\">https://booster.io/country-codes/</a>"
|
16433 |
msgstr ""
|
16434 |
|
16435 |
+
#: includes/settings/wcj-settings-price-by-country.php:425
|
16436 |
msgid "Multiply Price by"
|
16437 |
msgstr ""
|
16438 |
|
20723 |
msgid "Attribute \"name\" is required!"
|
20724 |
msgstr ""
|
20725 |
|
20726 |
+
#: includes/shortcodes/class-wcj-shortcodes-orders.php:378
|
20727 |
#, php-format
|
20728 |
msgid "Refund #%1$s - %2$s"
|
20729 |
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.9.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.5.
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -168,8 +168,10 @@ To unlock all Booster for WooCommerce features, please install additional paid B
|
|
168 |
* *Upsells* - Customize upsells products display. Global upsells (Available in paid Booster bundles).
|
169 |
* *User Products* - Let users add new products from the frontend. Image additional field (Available in paid Booster bundles). Custom Taxonomies (1 allowed in free version).
|
170 |
* *Product Variation Swatches* - Let users choose product variant from frontend.(Available in paid Booster bundles)
|
|
|
171 |
**Cart & Checkout**
|
172 |
|
|
|
173 |
* *Cart Custom Info* - Add custom info to the cart page (1 cart block allowed in free version).
|
174 |
* *Cart Customization* - Customize WooCommerce cart - hide coupon field; item remove link; change empty cart "Return to shop" button text.
|
175 |
* *Checkout Core Fields* - Customize core checkout fields. Disable/enable fields, set required, change labels and/or placeholders; Setup fields by category (Available in paid Booster bundles)
|
@@ -265,7 +267,19 @@ To unlock all Booster for WooCommerce features, please install additional paid B
|
|
265 |
|
266 |
== Changelog ==
|
267 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
= 5.5.6 30/03/2022 =
|
|
|
269 |
* Fix - PRODUCTS - Product Addons - Fixed add-on issue with add-on by variation feature.
|
270 |
* Fix - PRICES & CURRENCIES - Prices and Currencies by Country - Fixed IP detection issue with Booster method.
|
271 |
* Fix - PRICES & CURRENCIES - Currency - Fixed the input field addition on saving the changes.
|
@@ -278,6 +292,7 @@ To unlock all Booster for WooCommerce features, please install additional paid B
|
|
278 |
* WordPress 5.9.2 tested
|
279 |
|
280 |
= 5.5.4 28/02/2022 =
|
|
|
281 |
* Fix - PRODUCTS-Product Addons-Fixed Quantity issue with PHP 8.0
|
282 |
* Fix - PRICES & CURRENCIES-Global Discount-Fixed issue with showing discounted price on product page for PHP 8.0.
|
283 |
* Fix - PAYMENT GATEWAYS-Gateways Fees and Discounts-Changed transalation text for WPML.
|
@@ -286,6 +301,7 @@ To unlock all Booster for WooCommerce features, please install additional paid B
|
|
286 |
* WordPress 5.9.1 tested
|
287 |
|
288 |
= 5.5.1 31/01/2022 =
|
|
|
289 |
* WooCommerce 6.1.1 tested
|
290 |
* WordPress 5.9 tested
|
291 |
|
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.9.3
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.5.7
|
8 |
License: GNU General Public License v3.0
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
168 |
* *Upsells* - Customize upsells products display. Global upsells (Available in paid Booster bundles).
|
169 |
* *User Products* - Let users add new products from the frontend. Image additional field (Available in paid Booster bundles). Custom Taxonomies (1 allowed in free version).
|
170 |
* *Product Variation Swatches* - Let users choose product variant from frontend.(Available in paid Booster bundles)
|
171 |
+
|
172 |
**Cart & Checkout**
|
173 |
|
174 |
+
* *Cart Anabdoned Reminder* - Send reminder for abandoned cart offering discount to increase conversion.(Available in paid Booster bundles)
|
175 |
* *Cart Custom Info* - Add custom info to the cart page (1 cart block allowed in free version).
|
176 |
* *Cart Customization* - Customize WooCommerce cart - hide coupon field; item remove link; change empty cart "Return to shop" button text.
|
177 |
* *Checkout Core Fields* - Customize core checkout fields. Disable/enable fields, set required, change labels and/or placeholders; Setup fields by category (Available in paid Booster bundles)
|
267 |
|
268 |
== Changelog ==
|
269 |
|
270 |
+
= 5.5.7 27/04/2022 =
|
271 |
+
|
272 |
+
* NEW FEATURE - PDF INVOICING & PACKING SLIPS - PDF Invoicing - Added new shortcode to show 0 VAT message. [wcj_order_vat_func vat_exempt_text=' ']
|
273 |
+
* FIXED - PDF INVOICING & PACKING SLIPS - PDF Invoicing - Bulk and auto-generate number sequence issue has been fixed.
|
274 |
+
* FIXED - PRICES & CURRENCIES- Prices and Currencies by Country - Added Compatibility of B2B King wholesale prices.
|
275 |
+
* FIXED - PRODUCT- Product Tabs - WPML issue with global product tabs.
|
276 |
+
* FIXED - PAYMENT GATEWAYS - Gateways Fees and Discounts - Updated the payment fee calculation
|
277 |
+
* WooCommerce 6.4.1 tested
|
278 |
+
* WordPress 5.9.3 tested
|
279 |
+
|
280 |
+
|
281 |
= 5.5.6 30/03/2022 =
|
282 |
+
|
283 |
* Fix - PRODUCTS - Product Addons - Fixed add-on issue with add-on by variation feature.
|
284 |
* Fix - PRICES & CURRENCIES - Prices and Currencies by Country - Fixed IP detection issue with Booster method.
|
285 |
* Fix - PRICES & CURRENCIES - Currency - Fixed the input field addition on saving the changes.
|
292 |
* WordPress 5.9.2 tested
|
293 |
|
294 |
= 5.5.4 28/02/2022 =
|
295 |
+
|
296 |
* Fix - PRODUCTS-Product Addons-Fixed Quantity issue with PHP 8.0
|
297 |
* Fix - PRICES & CURRENCIES-Global Discount-Fixed issue with showing discounted price on product page for PHP 8.0.
|
298 |
* Fix - PAYMENT GATEWAYS-Gateways Fees and Discounts-Changed transalation text for WPML.
|
301 |
* WordPress 5.9.1 tested
|
302 |
|
303 |
= 5.5.1 31/01/2022 =
|
304 |
+
|
305 |
* WooCommerce 6.1.1 tested
|
306 |
* WordPress 5.9 tested
|
307 |
|
version-details.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
= 5.5.
|
2 |
-
*
|
3 |
-
*
|
4 |
-
* WooCommerce 6.
|
5 |
-
* WordPress 5.9.
|
1 |
+
= 5.5.7 27/04/2022 =
|
2 |
+
* NEW FEATURE - PDF INVOICING & PACKING SLIPS - PDF Invoicing - Added new shortcode to show 0 VAT message. [wcj_order_vat_func vat_exempt_text=' ']
|
3 |
+
* FIXED - PDF INVOICING & PACKING SLIPS - PDF Invoicing - Bulk and auto-generate number sequence issue has been fixed.
|
4 |
+
* WooCommerce 6.4.1 tested
|
5 |
+
* WordPress 5.9.3 tested
|
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.5.
|
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: 6.
|
13 |
License: GNU General Public License v3.0
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
*/
|
@@ -58,7 +58,7 @@ if (!class_exists('WC_Jetpack')) :
|
|
58 |
* @var string
|
59 |
* @since 2.4.7
|
60 |
*/
|
61 |
-
public $version = '5.5.
|
62 |
|
63 |
/**
|
64 |
* @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.5.7
|
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: 6.4.1
|
13 |
License: GNU General Public License v3.0
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
*/
|
58 |
* @var string
|
59 |
* @since 2.4.7
|
60 |
*/
|
61 |
+
public $version = '5.5.7';
|
62 |
|
63 |
/**
|
64 |
* @var WC_Jetpack The single instance of the class
|