Best Multi Vendor Marketplace Plugin for WordPress › Forums › WCFM › Single Product Multi-vendor? How it's work?
- This topic has 7 replies, 3 voices, and was last updated 7 years, 10 months ago by
WCFM Forum.
- AuthorPosts
- November 13, 2018 at 4:09 pm #36621
akos
ParticipantHi,
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
- November 13, 2018 at 4:22 pm #36622
WCFM Forum
MemberHi,
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
- November 13, 2018 at 4:28 pm #36623
akos
ParticipantWow! 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.
- November 13, 2018 at 4:46 pm #36624
WCFM Forum
MemberHi,
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
- November 13, 2018 at 6:30 pm #36632
akos
ParticipantThis reply has been marked as private. - November 15, 2018 at 3:42 pm #36812
WCFM Forum
MemberHi,
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
- November 16, 2018 at 11:54 am #36866
akos
GuestAnd how to show stock quantity? If I’m buy the WCFM – Ultimate it’s shows vendor warehouse inventory / quantity?
- November 17, 2018 at 9:22 am #36914
WCFM Forum
MemberHi,
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 -> InventoryThank You
- AuthorPosts
- The topic ‘Single Product Multi-vendor? How it's work?’ is closed to new replies.