Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WC Marketplace › only add by Sell Items Catalog ( BULK ADD )
Tagged: Sell Items Catalog ( BULK ADD )
- This topic has 3 replies, 2 voices, and was last updated 4 years, 6 months ago by Sushobhan.
- AuthorPosts
- May 20, 2020 at 8:52 am #133382francoa.taffarelParticipant
HEY, How do I configure WC MARKETPLACE to just add products using the add to my store / Sell Items Catalog (BULK ADD) method ? currently when removing the option in product add capabilities, both methods are inaccessible, I wanted to not allow the user adds a new product manually, just add those created by me (he could only edit its quantity).
- May 20, 2020 at 10:34 am #133408SushobhanKeymaster
Hi,
Starting from WCMp v3.4.0, it is no more compatible with WCFM. You can switch to WCFM Marketplace if you want.
We are truly sorry about this inconvenience.
Thank You! - May 21, 2020 at 1:51 am #133664francoa.taffarelParticipant
HEY, How do I configure WCFM Marketplace to just add products using the add to my store / Sell Items Catalog (BULK ADD) method ? currently when removing the option in product add capabilities, both methods are inaccessible, I wanted to not allow the user adds a new product manually, just add those created by me (he could only edit its quantity).
- May 25, 2020 at 5:23 pm #135027SushobhanKeymaster
Hi,
Kindly use the following snippet for this-add_filter( 'wcfm_is_allow_add_products', function () { global $wp; if ( isset( $wp->query_vars['wcfm-sell-items-catalog'] ) ) { return true; } return false; } );
Add this code to your child theme’s functions.php
In case you do not have a child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Note: Keep Add Products capability enabled.
Let me know how this goes.
Thanks!
- AuthorPosts
- You must be logged in to reply to this topic.