only add by Sell Items Catalog ( BULK ADD )

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 WC Marketplace only add by Sell Items Catalog ( BULK ADD )

Viewing 3 reply threads
  • Author
    Posts
    • #133382
      francoa.taffarel
      Participant

      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).

    • #133408
      Sushobhan
      Keymaster

      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!

    • #133664
      francoa.taffarel
      Participant

      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).

    • #135027
      Sushobhan
      Keymaster

      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!

Viewing 3 reply threads
  • You must be logged in to reply to this topic.