• Resolved kkjj

    (@kkjj)


    Hi

    I am using the Dokan multivendor plugin and I am trying to export orders with shipping cost per vendor per order. Is there any way of doing this? I can generate the shipping rate for the whole order but not on a per vendor basis.

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author algol.plus

    (@algolplus)

    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

    Plugin Author algol.plus

    (@algolplus)

    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?

    Plugin Author algol.plus

    (@algolplus)

    yes

    Thread Starter kkjj

    (@kkjj)

    Done

    Plugin Author algol.plus

    (@algolplus)

    ok, I’ve replied

    Plugin Author algol.plus

    (@algolplus)

    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;
    });
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Shipping per vendor’ is closed to new replies.