howy
Forum Replies Created
-
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Settings are not being savedfixed in 2.1.4
Thanks!Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] Settings are not being savedHello,
same issue with Barberry Theme (2.9.8.7).
The javascript error is
Cannot read properties of undefined (reading 'send')
at
wp-content/plugins/variation-swatches-for-woocommerce/assets/js/admin.js?ver=2.1.3:166
Tested on WordPress (5.8.3) by disabling all plugins except for WooCommerce (6.1.1) and Variation Swatches for WooCommerce (2.1.3)
Forum: Plugins
In reply to: [WP-Lister Lite for eBay] [[product_gallery]] only for pro version?Thanks!
Hi @martapaw,
Thank you for your support.My shop sells furnitures and home decorations. These are my current table rates based on weight (kg, VAT not included):
- 0 – 1 —> 6.90
- 1.1 – 3 —> 7.30
- 3.1 – 5 —> 8.40
- 5.1 – 10 —> 11.50
- 10.1 – 20 —> 12.30
- 20+ —> 27.30
Before calculating the weight I have to check the dimensions of the products box to see if they exceed a certain value:
- if the sum of all the dimensions of all the products of the cart exceeds 170cm I have to apply the maximum weight rule (20+ kg)
- if the sum of only one dimension (length or width or height) exceeds 100cm I have to apply the maximum weight rule (20+ kg)
If I have these products in my cart
Product 1 (10l x 80w x 20h – 3kg) x 1
Product 2 (5l x 30w x 10h – 1kg) x 1
The shipment will cost 27.30 because the width has exceeded 100cmIf I have these products in my cart
Product 1 (10l x 80w x 50h – 3kg) x 3
The shipment will cost 27.30 because the sum of all sizes of all products has exceeded 170cmIf I have these products in my cart
Product 1 (5l x 7w x 5h – 1kg) x 1
Product 2 (8l x 30w x 20h – 5kg) x 1
Product 1 (20l x 20w x 20h – 3kg) x 1
The shipment will cost 11.50 because the dimensions do not exceed the limits and the weight rule is applied.This is the code I’m still testing
function my_woocommerce_package_rates($rates) { $items = WC()->cart->get_cart(); $length = $width = $height = 0; foreach ($items as $key => $value) { $dimentions = $value['data']->get_dimensions(false); $length = $length + $dimentions['length'] * $value['quantity']; $width = $width + $dimentions['width'] * $value['quantity']; $height = $height + $dimentions['height'] * $value['quantity']; } if ($length + $width + $height > 170 or $length > 100 or $width > 100 or $height > 100) { foreach ($rates as $rate) { $rate->set_cost(27.30); $rate->set_taxes([7.70]); } } return $rates; } add_filter('woocommerce_package_rates', 'my_woocommerce_package_rates', 100);
Hope this helps!
hi @renateho
yes i resolved this, support helped me.
my problem was about tax settings: try to enable tax calculation from woocommerce settings, add a standard rate and be sure to apply taxes in general tab in product edit pagehope this help!
Forum: Plugins
In reply to: [WP-Lister Lite for eBay] Item Specifics table emptythanks for support,
i refreshed details but i can’t still see the table.
i’ve opened a ticketBuongiorno,
vi ho inviato una mail il 7 Ottobre. Non so se è stata ricevuta, se eventualmente è in fase di verifica o lo sarà prossimamente, perchè non ho avuto nuovamente risposta.
Grazie
thanks for support,
i will open a ticket
Forum: Plugins
In reply to: [WP-Lister Lite for eBay] Hooks for publish itemsthanks
all topic issues are fixed in 0.9.12!
thanks!
Forum: Plugins
In reply to: [WP-Lister Lite for Amazon] errors exporting some products on amazonhi, at lest i decided to manually add non-existing new products using the amazon inventory panel and i have one more question: it’s possible to sync those product with the matching ones on my woocommerce? i have the same sku on boht platform,
thans!
Forum: Plugins
In reply to: [WP-Lister Lite for Amazon] errors exporting some products on amazonThanks for your support!
i tried the shoes template (from amazon it) and i filled all required fields:
external_product_id, external_product_id_type, item_name, brand_name, feed_product_type, standard_price, recommended_browse_nodes, department_name, color_map, outer_material_type, size_map
i still got error 99003: A required value is missing for the specified variation theme: [size_name = null], [variation_theme = “Size”].
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] subscribers not saved in chinese languageyep, no database record.
i tried using all latin characters so far.
today i tried using a chinese keyboard (osx virtual keyboard) and ALO tell me the email is incorrect on this input: 白月大 / 金@十又女子。大人大setting “sub-directory” in “Network Permalink Structure” solved my issue!
thanks for your great work!if can help, the issue comes since version 1.3.59 and higher, no problems using 1.3.56 and pre-v1.3.59