hi
Could you visit >Woocommerce>Orders and edit order ?
Do you see shipping cost per vendor here ?
thanks, Alex
Thread Starter
kkjj
(@kkjj)
Hi
Yes- I can see the shipping associated with the seller_id- ie separate shipping prices in each order. But is there a way to spit this out in a csv/ excel etc using your plugin?
Thanks
hi
Do you use free version ? I don’t see it.
If you use paid version — please, upload the plugin to helpdesk.
thanks, Alex
Thread Starter
kkjj
(@kkjj)
You mean Dokan? Yes I use a paid version. Is this what you need me to upload?
For users having same problem ( export shipping cost for each vendor)
You must export suborders to get this information
1. open section “Filter by order” and uncheck “Don’t export child orders”
2. add field “Order Shipping Amount” to the export
2. add following code to section “Misc Settings” ( to skip parent orders)
thanks, Alex
add_filter("woe_order_export_started", function($order_id){
return (get_post_meta( $order_id, 'has_sub_order', true ) == "1") ? false: $order_id;
});