shipping in mixed shopping carts

Theme and Plugin Support

Resolved
Viewing 7 reply threads
  • Author
    Posts
    • #142624
      Michael Deinhardt
      Participant

      hello, we are integrating WCMP into the shop of a customer who has his own products and conditions. how can we make it so that a mixed shopping cart shows the corresponding shipping conditions per product?

    • #142633

      Hi Michael, I presume you want to display the shipping cost per product.

      As you are already using Frontend Manager, so all you need now is the WooCommerce Per Product shipping plugin (https://woocommerce.com/products/per-product-shipping/).

    • #142634
      Michael Deinhardt
      Participant

      hello and thank you for the quick response. but since every vendor can define own shipping conditions how will it be displayed?
      Example for a mixed shopping cart:
      Product A from Vendor 1
      Product B from Vendor 1
      = free shipping bc >100€

      Product C from Vendor 2
      = shipping fee 5€

      Product D from Vendor 3
      = free shipping

    • #142658

      @Michael Deinhardt, the shipping calculation gets carried out by WooCommerce and they calculate the shipping rate as per shipping class. Each vendor’s product has the same shipping class with it.

      so even though it will calculate the shipping rate per product it will show then as a total cost per vendor in the checkout.

    • #142828
      Michael Deinhardt
      Participant

      Hello, now in the setup process we are facing some more questions / problems. We hope you can help us figuring out the solutions:

      1. There is “free shipping” or “local pickup” available for the main shop (the shop of out customer), then it will also be available for all vendors. How can we prevent that, i.e. how can we offer free shipping for the main shop, but not for vendors (unless they enable it themselves in their shipping options)?

      2. When a vendor adds a product, he can choose a product category. How can we limit the selection for Vendors to certain product categories?

      3. There seems to be a bug when a vendor trys to add images to a product or his shop face. Pls see attached screenshot

      4. When trying to login as a vendor at the vendor dashboard the first attempt always fails. The second is ok. We have already checkt cookie settings.

    • #142876

      Hi @Michael Deinhardt, our replies are inline :

      1. There is “free shipping” or “local pickup” available for the main shop (the shop of out customer), then it will also be available for all vendors. How can we prevent that, i.e. how can we offer free shipping for the main shop, but not for vendors (unless they enable it themselves in their shipping options)?

      >> In order to remove this add this code in the function.php of the theme :

      /**
      ** edit shipping method
      **/
      add_filter( 'wcmp_vendor_shipping_methods','wcmp_edit_shipping_method');
      function wcmp_edit_shipping_method($edit_shipping_method){
          unset($edit_shipping_method['free_shipping']);
          return $edit_shipping_method;
      }
      Copy

      2. When a vendor adds a product, he can choose a product category. How can we limit the selection for Vendors to certain product categories?
      >> By default we let vendor access any category, that is already added in the site.

      But if you want to restrict this, then you need to use our addon WCMp Vendor Memberhsip (https://multivendorx.com/product/wcmp-vendor-membership/). This lets admin restrict categrories from the vendor.

      3. There seems to be a bug when a vendor trys to add images to a product or his shop face. Pls see attached screenshot

      4. When trying to login as a vendor at the vendor dashboard the first attempt always fails. The second is ok. We have already checkt cookie settings.
      >> This is just a small css issue. Just share a temporray admin access so we can check.

    • #142887
      Michael Deinhardt
      Participant

      Hi, here are the Administrator credentials for the site:
      https://wcmp.raiwa24.de/wp-admin/
      WCMP
      KKl)Rs^BS^jdtt6g7tw$pcy5

      We will check out the solutions for 1 and 2.

      Pls. is there any timeline for the MultivendorX release or is it possible to test the pro version of MultivendorX?

    • #142937

      @Michael Deinhardt, I have added this css via WCMp >> Settings >> vendor >> Frontend

      div#__wp-uploader-id-2, div#__wp-uploader-id-0, div#__wp-uploader-id-2 {
          display: none;
      }
      Copy

      Regarding the login issue, this seems like related to your site. Some plugin might be causing this issue. But without detecting them , it will be difficult for you to find a solution.

Viewing 7 reply threads

The topic ‘shipping in mixed shopping carts’ is closed to new replies.