• Resolved Olufemi

    (@yurbshop21)


    Hi guys, I want my customers to select a single shipping method at checkout for multiple items from different vendors. For example, It not cool enough to select 3 different shipping methods for 3 different items from 3 different vendors. Is it possible to select one shipping for all while lowest/cheapest shipping rates of other vendors are added to the selected one automatically. Any possibility? Thanks!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @yurbshop21

    By default, Dokan does not have the option to set a rule to show a combined shipping rate if there are products from multiple vendors in the cart.

    However, if you use the default WooCommerce shipping methods (admin shipping) and want to apply only one shipping charge for all vendors, you can copy the code below and paste it into your child theme’s functions.php file. It will apply one shipping charge only regardless of the number of vendors’ products purchased in a single order.

    remove_filter( 'woocommerce_cart_shipping_packages', 'dokan_custom_split_shipping_packages' );
    remove_filter( 'woocommerce_shipping_package_name', 'dokan_change_shipping_pack_name');
    remove_action( 'woocommerce_checkout_create_order_shipping_item', 'dokan_add_shipping_pack_meta');

    I hope the information will help.

    Cheers!

    Thread Starter Olufemi

    (@yurbshop21)

    Thanks

    Hi @yurbshop21

    Glad to know that the above-shared solutions worked for you.

    However, as the purpose of this topic has been served we are marking this as resolved. Feel free to open a new one for any further issues or queries.

    Cheers!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Multiple shipping at checkout’ is closed to new replies.