Hello,
I am using “Paid Listings” extension, to charge vendors for packages.
Customer can buy a service (displayed as listing) from vendors.
Customer can also accept an offer from vendors after they posted a request.
As admin/site owner, I only charge customers for my commission based on listing/offer price (payout system : direct), not the whole price.
Correct me if I am wrong, but that’s the way an order is processed :
A customer buys a service / accepts an offer from a vendor.
The vendor is notified of the pending order (status : processing).
Once he delivered the order, he marks it as such : “delivered”.
Finally the customer is notified and has to mark it as “complete”.
Then and only then, commission is payed out.
I am not even mentioning the “reject” and “dispute” cases, to keep it simple.
It’s a little convoluted/complicated, users needs to be educated, to say the least.
But at least my commission does not get paid before the order is actually “completed”, which is fine by me.
However I was surprised to see that vendors would have to process the orders as well (mark them as complete), when they buy the package(s) !!
No frickin’ way !
I cannot simply hide with CSS the “Complete order”, otherwise it would also hide it when vendor needs to mark the order as “delivered”.
So I came up with this code snippet, which passes the order as delivered automatically but only when orders are about packages.
In the code below, the IDs are the ones from my two possible paid packages (woocommerce products).
Feel free to reuse, but change to your own IDs.
// woocommerce_order_status_processing is also called when order is created
add_action('woocommerce_order_status_processing', function ($order_id) {
if (!$order_id) {
return;
}
$order = wc_get_order($order_id);
if (!$order) {
return;
}
// Get the first (and only) product in the order
$items = $order->get_items();
$item = reset($items); // Get the first item
$product_id = $item->get_product_id();
// Check if the product ID is one of the targeted ones ( pack premium, pack pro)
if (in_array($product_id, [439, 1566])) {
$order->update_status('completed');
}
}, 10, 1);
If you ever want to force the order for both vendors and customers to ‘completed’, making the process easier for everyone, just remove the condition based on the IDs.
Therefore :
if (in_array($product_id, [439, 1566])) {
$order->update_status('completed');
}
becomes
//pass all orders statuses as 'completed'
$order->update_status('completed');
Cheers !