nelsonamaya
Forum Replies Created
-
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Suborder status not changing after refundHi @karzin,
Thanks for your answer, however this doesn’t fix the issue.
For example I have a main order and refunded an item inside that main order:
https://cl.ly/2b6ae3600b21But the suborder corresponding to that item doesn’t change its status to refunded:
https://cl.ly/c71a575a53a9
https://cl.ly/29ef86866246The idea would be also to change the suborder status accordingly.
Thank you very much.
Thank you so much @karzin, it works fine now.
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Suborder status not changing after refundForum: Plugins
In reply to: [Multi Order for WooCommerce] Discount not working fine on subordersForum: Plugins
In reply to: [Multi Order for WooCommerce] Suborder status not changing after refundHi @karzin,
In fact the refunds are not being reflected in any case, e.g. when I apply a refund to a main order, it’s not reflected in the suborder, as well as when it’s applied to a suborder, is not being reflected in the main order.
Thanks.
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Discount not working fine on subordersI managed to fix it with the ‘_cart_discount’ suborder meta value, this way:
public function after_insert_suborder( $suborder_id, $main_order_id ) {
update_post_meta( $suborder_id, ‘_cart_discount’, $my_custom_discount );
}add_action( ‘mofwc_after_insert_suborder’, ‘after_insert_suborder’, 10, 2 );
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Discount not working fine on subordersThe taxes are also wrong in the suborders, here’s another example:
This is the main order: https://cl.ly/5203889386ba
And this is a suborder: https://cl.ly/b3de3ef5d1a8As you can see, the discount is $25 (but should be $12.5), and the MI Sales Tax is $2.70 (but should be $1.35).
In conclusion, just those 2 values are the ones who would need to be fixed.
Thank you!
Forum: Plugins
In reply to: [Multi Order for WooCommerce] How to control which orders shouldn’t be splitNevermind, I got it.
Thank you so much!! Your support is great!
Forum: Plugins
In reply to: [Multi Order for WooCommerce] How to control which orders shouldn’t be splitThank you @karzin for your prompt response.
How can I use the first filter? When should I call it and how to pass the main order ID?
Thanks!
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Not creating all subordersThanks for your answer @karzin , however I need it to be 2, as I don’t need to split orders with a single product.
It’s solved.
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Not creating all subordersHi @karzin, I’ve just found another issue:
In the Multi Order options, I checked the “Consider quantity” option so when I create an order with 2 or more items of the same product, it will split the order, however when this checkbox is checked, if I purchase 2 different products in the same order, it doesn’t split the order (I have “Minimum quantity” set to 2).
Thanks.
Thanks @karzin it seems to fix the issue.
Forum: Plugins
In reply to: [Multi Order for WooCommerce] Failed OrdersHi @karzin
I’m also facing this error:
Uncaught Error: Call to undefined method WC_Order_Refund::get_order_number() in /wp-content/plugins/multi-order-for-woocommerce-pro/classes/multiorder/class-alg-mowc-pro-order-manager.php
I searched for that method in the WC_Order_Refund class and indeed, it doesn’t exist, could you help us by fixing it? Or could you share the repo URL so I can create a pull request with the fix?
Thanks a lot.
Hi, any news?