Forum Replies Created
-
AuthorPosts
-
kevajo
ParticipantMr.
We paid for you to make your old customizations compatible with Multivendor X.
You have provided the estimate and we have proceeded with the payment as our previous payments.
But by surprise you ignored part of our personalization, we let you know, you asked us to pay again.
When you first customized your price, we paid over $3000.
The second customization more than $3500 and again instead of a plugin as in the specification below you provided custom codes in fontion.php of our child theme.Third customization $800, to make all customizations compatible with your own code. And I remind you that in the second customization, you were asked that the code be compatible with multivendor x.
You are not serious in asking us to pay again.
We’ve always been honest and if you really care about God you’ll be on our side.You cannot ask us to pay again for work that should have been done since the second customization.
But alas, let’s observe.
kevajo
ParticipantWe paid the customization team who worked halfway and refused to complete our work.
So I have to do it myself.
Your customization colleagues are at risk of smearing this fine company.kevajo
ParticipantIs no okay .
see capturekevajo
ParticipantThis reply has been marked as private.kevajo
Participantthe shipping widget is no okay but the shipping action works fine, it is hidden.
kevajo
ParticipantThanks you
kevajo
ParticipantThis reply has been marked as private.kevajo
ParticipantTHANKS.
It works.
I also want to prevent sellers from making deliveries.
Please help me hide delivery on el sellerkevajo
ParticipantI used this code and it works.
Please update the code on mx// sync suborder status with parent order status
add_action(‘woocommerce_order_status_changed’, ‘wcmp_parent_order_to_vendor_order_status_synchronization_clint’, 99, 3);
function wcmp_parent_order_to_vendor_order_status_synchronization_clint( $order_id, $old_status, $new_status ){
$wcmp_suborders = get_wcmp_suborders($order_id);
if ($wcmp_suborders) {
foreach ($wcmp_suborders as $suborder) {
$suborder->update_status($new_status, _x(‘Update via parent order: ‘, ‘Order note’, ‘dc-woocommerce-multi-vendor’));
}
}
}kevajo
ParticipantI fully understand what you are saying.
The code only works for the 3 statuses “wc-completed”, “wc-cancelled” and “wc-processing”.
But woocommerce is not limited to its 3 statuses, and also we have custom statuses.
That’s why I want a code that encompasses any status.THANKS
kevajo
ParticipantI need a code that synchronizes any status of main command and sub commands
kevajo
ParticipantGood morning
Thank you for your reply.
What I wanted is that whatever the status of the order in which the main order the sub-orders are in the same status.
I have multiple custom order statuses.
I just want it to happen automatically.
As soon as I change the status of the main order, the sub-orders take on the same status.
In your answer the statutes are fixed.Here is my code which I tried to do but it does not work.
Please verify.
I remember that I am on Multivendor X pro.// sync suborder status with parent order status
add_action(‘woocommerce_order_status_changed’, ‘mx_parent_order_to_vendor_order_status_synchronization_clint’, 10, 3);
function mx_parent_order_to_vendor_order_status_synchronization_clint( $order_id, $old_status, $new_status ){
$mx_suborders = get_mx_suborders($order_id);
if ($mx_suborders) {
foreach ($mx_suborders as $suborder) {
$suborder->update_status($new_status, _x(‘Update via parent order: ‘, ‘Order note’, ‘multivendorx’));
}
}
}kevajo
Participantokay
kevajo
ParticipantThis reply has been marked as private.kevajo
ParticipantThis reply has been marked as private. -
AuthorPosts
