Couple Questions

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!

Viewing 2 reply threads
  • Author
    Posts
    • #63198
      hello9
      Participant

      Hello,

      I am working on customizing the marketplace for my businesses use and have a couple questions on how to resolve?

      1) On the vendors front-end dashboard, can I hide “add new” button in products section? With my business, I require the vendor to duplicate my product and have minimal access to make changes to my templated products. I therefore cannot turn off the ability to add new products, as I still need them to be able to duplicate a product. Screenshot: https://ibb.co/sqqKbxn

      2) On the Vendor Dashboard, since I have the products set to “admin fees” (I am treating the admin fee as the “cost for the product” as I am purchasing the base product, printing and shipping their sales. They are receiving a commission only on their design that is being printed on the apparel). Is it possible to show their commission in this box, rather than a tabulation of my admin fees?
      Screenshot: https://ibb.co/2Yj8Y4X

      3) On the /shop/ page showing all products by all vendors, I’d like to change the size, icon visibility, and placement of the vendor name text. See screenshot for request: https://ibb.co/3zW4DpF

      4) On the Product page, am I able to hide the “More Offers” tab? I still need the ability for them to sell my predefined products, but I’d like this remove this tab as it does not make sense for my business. https://ibb.co/mGSc8sv

      5) Are there any plans to offer an automatic disbursement of commissions on a predefined timeline? Such as once a month – all of the sales for the previous month commissions are automatically paid out without admin or vendor intervention?

      Please let me know, thank you!

      Shannon

      Attachments:
      You must be logged in to view attached files.
    • #63781
      hello9
      Participant

      Are these forums the best way to deal with these types of requests? Or should I be using another method?

    • #65482
      WCFM Forum
      Keymaster

      Hi,

      1) On the vendors front-end dashboard, can I hide “add new” button in products section? With my business, I require the vendor to duplicate my product and have minimal access to make changes to my templated products. I therefore cannot turn off the ability to add new products, as I still need them to be able to duplicate a product. Screenshot: https://ibb.co/sqqKbxn

      – Please set OFF “Add Product” at WCFM Capability setting – https://ibb.co/t2GLDf5

      2) On the Vendor Dashboard, since I have the products set to “admin fees” (I am treating the admin fee as the “cost for the product” as I am purchasing the base product, printing and shipping their sales. They are receiving a commission only on their design that is being printed on the apparel). Is it possible to show their commission in this box, rather than a tabulation of my admin fees?
      Screenshot: https://ibb.co/2Yj8Y4X

      – Please setup “Commission For -> Vendor” at WCFM Admin Setting -> Commission Setting – https://ibb.co/rMFW79Y

      3) On the /shop/ page showing all products by all vendors, I’d like to change the size, icon visibility, and placement of the vendor name text. See screenshot for request: https://ibb.co/3zW4DpF

      – Add this line to hide store logo from here –
      add_filter( 'wcfmmp_is_allow_sold_by_logo', '__return_false' );

      Which theme you are using ?

      4) On the Product page, am I able to hide the “More Offers” tab? I still need the ability for them to sell my predefined products, but I’d like this remove this tab as it does not make sense for my business. https://ibb.co/mGSc8sv

      – Do you want to keep “Product Multivendor” option but do not want to have “More Offers” tab?
      If so, then do not disable “Product Multivendor” setting. Add this code to your child theme’s functions.php –

      add_filter( 'woocommerce_product_tabs', function( $tabs ) {
      	if( isset( $tabs['wcfm_product_multivendor_tab'] ) ) unset( $tabs['wcfm_product_multivendor_tab'] );
      	return $tabs;
      }, 250 );

      5) Are there any plans to offer an automatic disbursement of commissions on a predefined timeline? Such as once a month – all of the sales for the previous month commissions are automatically paid out without admin or vendor intervention?

      – We will add “Schedule Commission Payout” option very soon.

      Well, if you do not have any child theme then add codes using this plugin – https://wordpress.org/plugins/code-snippets/

      Thank You

Viewing 2 reply threads
  • The topic ‘Couple Questions’ is closed to new replies.