Single Product Multi-vendor? How it's work?

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WCFM Single Product Multi-vendor? How it's work?

Viewing 7 reply threads
  • Author
    Posts
    • #36621
      akos
      Participant

      Hi,

      I’m testing your plugin, but I’m don’t know the “Single Product Multi-vendor” how it’s work. I’m check the documentation (https://wclovers.com/knowledgebase/wcfm-marketplace-single-product-multi-vendor/), but if I’m going to the Products -> “Product” > Vendor I’m only chouse one vendor, and no more. I’m check your demo, and I’m see a same problem…

      What is the problem? Can you help me?

      Best regards,

      Akos

    • #36622
      WCFM Forum
      Keymaster

      Hi,

      Thanks for get in touch with us.

      Hope you have found this image in that documentation – https://ibb.co/gxOtvL

      Admin can not assign one product to many vendors.

      It works as vendor login.

      you have to login as vendor and check another vendor’s product or admin’s product – you will see “Sell this item” option, just click on that.

      Thank You

    • #36623
      akos
      Participant

      Wow! Thanks the fast help! And how can I show all vendors in the product page in the description? Below the product name, and not in the More Offers.

    • #36624
      WCFM Forum
      Keymaster

      Hi,

      You are welcome 🙂

      Well, there is no such setting option but this can be possible to achieve by adding this code snippet –

      add_action( 'woocommerce_single_product_summary',	function() {
      	global $WCFM, $WCFMmp, $product;
      	if( $WCFM && $WCFMmp && apply_filters( 'wcfm_is_pref_product_multivendor', true ) ) {
      		echo '<h2>' . apply_filters( 'wcfm_product_multivendor_tab_title', __( 'More Offers', 'wc-multivendor-marketplace' ) ) . '</h2>';
      		$WCFMmp->wcfmmp_product_multivendor->wcfmmp_product_multivendor_tab_content();
      	}
      }, 26 );
      add_filter( 'woocommerce_product_tabs', function( $tabs ) {
      	if( isset( $tabs['wcfm_product_multivendor_tab'] ) ) unset( $tabs['wcfm_product_multivendor_tab'] );
      	return $tabs;
      }, 150 );

      This will such view – https://ibb.co/hwhdvL

      Thank You

    • #36632
      akos
      Participant
      This reply has been marked as private.
    • #36812
      WCFM Forum
      Keymaster

      Hi,

      This is just matter of CSS tweak.

      You may add your CSS to make this look like your preferred screenshot (https://wclovers.com/wp-content/uploads/2018/11/storage.png).

      Thank

    • #36866
      akos
      Guest

      And how to show stock quantity? If I’m buy the WCFM – Ultimate it’s shows vendor warehouse inventory / quantity?

    • #36914
      WCFM Forum
      Keymaster

      Hi,

      Stock is part of WooCommerce, and it’s display depend on single product page template.

      It does not depend on WCFM or WCFM ultimate.

      Well, WC has some setting for showing stock in frontend – https://ibb.co/fNVtLL
      You will find this at wp-admin -> WooCommerce -> Setting -> Products -> Inventory

      Thank You

Viewing 7 reply threads
  • The topic ‘Single Product Multi-vendor? How it's work?’ is closed to new replies.