RokasJ
Forum Replies Created
-
Forum: Plugins
In reply to: [Booster for WooCommerce] is there a table rate option somewhere in pro?Hi creativemac,
If you mean table rates for shipping, you can use custom Booster shipping method for that – enable module and custom shipping option here: WooCommerce > Settings > Booster > Shipping & Orders > Custom Shipping, then go to WooCommerce > Settings > Shipping and set up shipping rates by adding Booster’s shipping method to your shipping zones.
Forum: Plugins
In reply to: [Booster for WooCommerce] WooCommerce Currency SwitcherUnfortunately if you want to use currency switcher you would have to disable currency by country module because they cannot be used both at the same time. Currency switcher also doesn’t allow using flags.
Forum: Plugins
In reply to: [Booster for WooCommerce] WooCommerce Currency SwitcherHi Mariyanna,
You can add country switcher anywhere on your page using a shortcode
[wcj_country_select_drop_down_list]
. It will show up anywhere where you write it.To add flags you should go to the “Prices and Currencies by Country” module settings and enable “Add Countries Flags Images to Select Drop-Down Box” option.
On the same page you can disable geolocating by changing “Customer Country Detection Method” option value.
Please make sure that your customers use the country switcher ([wcj_country_select_drop_down_list] shortcode or “Booster: Country Switcher” widget) and not the currency switcher as they are two separate modules. This may be a primary cause for the issues you have been experiencing.
Forum: Plugins
In reply to: [Booster for WooCommerce] How to margin left on pdf invoicesHi,
If you add a class for your table you can add padding in the “Styling” page by adding something like this to the CSS:
.class_name { padding: 5px; }
Forum: Plugins
In reply to: [Booster for WooCommerce] How to margin left on pdf invoicesHi,
You can set padding by editing values in Woocommerce > Booster Settings > PDF INVOICING & PACKING SLIPS > Page Settings.
You should buy a new license, generate a new key and paste it to your license activation screen. You will not lose any settings and it’s not necessary to reinstall the plugin itself.
Hi Lisa,
It means that you will no longer receive updates and therefore it might break with other plugin updates (WordPress, Woocommerce etc). You should purchase a new license so that this wouldn’t happen.
Hi,
Unfortunately that’s not possible yet but we have added it to our todo list.
Forum: Plugins
In reply to: [Booster for WooCommerce] Limit addonHi,
Unfortunately this cannot be achieved with product addons module, however there are “Custom Checkout Fields” and “Checkout Fees” modules in Booster. Using both of them you can achieve that if some product is in cart, then new field (e.g. checkbox) is added to the checkout page and if that checkbox is selected – fee is added to the cart. So basically it’s what you need, but instead “addon” being on single product page, it’s displayed on checkout page.
Forum: Plugins
In reply to: [Booster for WooCommerce] EU VAT Number Module is not working everytimeHi,
Do you use any caching plugins? Could you try temporarily disabling them and seeing if the issue persists?
Hi,
Can you explain a little bit more about what you are trying to achieve – “Checkout Custom Fields” module allows showing custom fields (for example checkbox, text field, date picker etc) on the checkout page, is this what you want?
Forum: Plugins
In reply to: [Booster for WooCommerce] Bulk upload ?Hi,
Unfortunately that’s not possible but we have added it to our todo list.
Forum: Plugins
In reply to: [Booster for WooCommerce] Export Order Purchase CostHi Simon,
If you export products with stock Woocommerce tool (that is directly form products page) with export meta option enabled, you will see a column “Meta: _wcj_purchase_price” with purchase prices. Therefore, you can try using your mentioned 3rd party plugin and retrieve _wcj_purchase_price meta field.
Forum: Plugins
In reply to: [Booster for WooCommerce] Currency SwitcherHi Alexander,
Unfortunately that’s not possible yet but we have added it to our todo list.
Forum: Plugins
In reply to: [Booster for WooCommerce] Get input fields by product idHi Alex,
Please try this:
$order = wc_get_order(); // or wc_get_order( $order_id ); foreach ( $order->get_items() as $item_key => $item ) { print_r( wc_get_order_item_meta( $item_key, '_wcj_product_input_fields_global_1' ) ); }