Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Disable Local Pickup

WCMp Vendor Membership

Resolved
Viewing 3 reply threads
  • Author
    Posts
    • #128829
      aburkhart
      Participant

      Hello – how do I disable the “Local Pickup” option for Vendor Shipping? They should not be delivering or allowing pickups in person. Only flat rate shipping, or calculated shipping. Nothing in person.

      Thank you.

    • #128863

      Hi, thank you for getting in touch with us.
      In order to disable “Local pickup” for “Vendor Shipping”, you need to do custom code:
      Please add this code in the function.php of the current active theme :

      add_filter( 'wcmp_vendor_shipping_methods', 'wcmp_remove_local_pickup' ); 
      function wcmp_remove_local_pickup( $shipping_methods ) 
      { 
      unset($shipping_methods['local_pickup']); 
      return $shipping_methods; 
      }
      Copy
    • #128899
      aburkhart
      Participant

      That worked great! Thank you!!!

    • #128924

      We are happy to help 🙂

      We would love it if you shared your experience by giving us 5/5 review here : https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/#new-post
      Seeing glowing reviews from existing customers makes others more comfortable knowing they’ll get the support they need should an issue with our services arise.

Viewing 3 reply threads

The topic ‘Disable Local Pickup’ is closed to new replies.