szelu77
Forum Replies Created
-
No, at some point I gave up trying, and later on it became unnecessary as I reduced number of shipping methods.
Hi @m155y5
Thank you, I’ll perform troubleshooting.
I understand bulk-edit assignment of new tax rates to existing products also doesn’t trigger recalculation, and tax will be calculated only for the new orders?
Forum: Plugins
In reply to: [WooCommerce] Removing sales from WooCommerce Status admin widgetHi @rynald0s
Many thanks for replying!
I would like to remove top 2 rows as marked in red: https://snipboard.io/8x1eOX.jpg
Best regards
Forum: Plugins
In reply to: [WooCommerce] Warnings shown after updating to 4.2.0Same here, WP 5.4.2, WC 4.2.2
Hi,
It is shown above add to cart button but only on the product page.
Addons are not shown on product lists / archives / shop page.Unfortunately I cannot share URL because it’s a trade website for registered business partners only, I use global Custom Price Labels and Add to Cart Button Visibility to hide the prices and add to cart button, which modules are disabled for logged in users with Modules by User Roles. So product addons won’t be visible for guest.
I also use Product Info Module to show [wcj_product_wholesale_price_table] in product meta start on product page – I’ve got no Archives filters configured there so this shouldn’t interfere with Addons on archives list…?
Forum: Plugins
In reply to: [Booster for WooCommerce] Plus: how to add product MOQ to admin product list?It worked like a charm, thanks a million!
Forum: Plugins
In reply to: [Booster for WooCommerce] Plus: how to add product MOQ to admin product list?Is there any way of adding it via functions.php?
Forum: Plugins
In reply to: [Giftable for WooCommerce] Plugin not working???Hi @decomteam
I resolved this – plugin “The GDPR Framework” conflicted with Giftable.
Thanks and best regards!
Forum: Plugins
In reply to: [Giftable for WooCommerce] Plugin not working???Hi @decomteam
I experience the same issue. My setup:
– gift category with min amount condition
– 4 products added to gift category: 2 giftable variations and 2 gift products.Results:
– on the Cart page gift carousel properly shows 4 products
– there are no Add to Cart buttons, only Select Options buttons
– after entering gift product, price shown is 0.00 and there is no Add to Cart button
– after entering giftable variation product it shows variations with Add to Cart, after adding the giftable variation it is added to the Cart as regular/variable product (together with its price).Forum: Plugins
In reply to: [WP-Lister Lite for Amazon] Rewriting billing name with shipping nameJohn sent me the proper code, thank you!
add_action( 'wpla_after_create_order_with_nonexisting_items', 'wpla_billing_name_update' , 10, 1 ); function wpla_billing_name_update( $post_id ) { $order = wc_get_order( $post_id ); if ( empty( $order->get_billing_last_name() ) ) { $last_name = $order->get_shipping_last_name(); $order->set_billing_last_name( $last_name ); $order->save(); } }
Forum: Plugins
In reply to: [WooCommerce] Vat calculation rounding