The supplier can only view the turnover of its own products

MultivendorX

Resolved
Viewing 13 reply threads
  • Author
    Posts
    • #193183
      Anonymous
      Inactive

      Hello,
      maybe it’s hard for me to say, but I need a system where the supplier can see the status of his products, but all parts of the trade are prepared by an admin.
      So all supplier spaces are sold by admin to a single admin store. The supplier can always check the status of his own product.

    • #193194

      Hello @webaukcio.eu thanks for reaching out .With MultiVendorX the vendors get their own personalized dashboard from where they can add products (https://prnt.sc/mn4-KIPvwBtj) , manage orders and do many more things .
      However, the admin can also add products and assign that to the vendors (https://prnt.sc/Os5E4WcvhjPN). If the admin wants, he can also restrict vendors from adding any product (https://prnt.sc/M24qmafLyKYo). But vendors can see all the products assigned to them (https://prnt.sc/mn4-KIPvwBtj).
      It would be really helpful, if you can explain the flow you are looking for, so we can assist you further.

      • #193227
        Anonymous
        Inactive
        This reply has been marked as private.
    • #193303
      This reply has been marked as private.
    • #193412
      Anonymous
      Inactive

      Hello,
      what I want to do can be a common demand in auctions!
      The Supplier hands over the product to me and I organize the auction. the Supplier can view its own products and their status.
      Buyers who bid in the auction cannot know the identity of the supplier.
      Therefore, contacts with the supplier must be blocked on the product page and also from the notification emails.
      Is it possible?

    • #193470

      @webaukcio.eu, yes this is absolutely possible.
      All you have to do is disable sold by option, this will hide the vendor’s name from the products.

      Why don’t you install our free plugin from here and set up the store for the simple product : https://wordpress.org/plugins/dc-woocommerce-multi-vendor/
      Just build the store as per your need, apart from auction flow.
      If you need any help there, don’t hesitate to send us a mail.

    • #193485
      Anonymous
      Inactive

      Hello,
      I downloaded this plugin several days ago and I’m testing everything. How can I disable sold by option, this will hide the vendor’s name from the products?
      I will send it as a picture, can I remove the section under Woocommerce products?

    • #193501

      You just need to go to admin dashboard >> MultiVendorX >> Settings >> General , from here you can disable the Display product seller option https://prnt.sc/OP6wA9C-Udr1

      Now to hide the sold by option in shop page and single product page https://prnt.sc/SL1tQ28FRGsu & https://prnt.sc/O2PhaR8rOeU6 .
      Also to remove vendor tab from single product page you can add the below code in the functions.php file of your current active theme –

      //  vendor tab
      add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 99 );
      function woo_remove_product_tabs( $tabs ) {
         unset( $tabs['vendor'] );      
         return $tabs;
      }
      Copy
    • #193512
      Anonymous
      Inactive

      Hello,
      Thanks!
      Unfortunately, the code does not work, but I tried to create ccs codes and managed to remove the supplier data on the products page and in the cart and checkout.
      I don’t know how it is possible to delete the supplier in the emails.

      I think many auction companies would be looking for a setup like mine, there is currently none on the market.

    • #193513
      Anonymous
      Inactive
    • #193517
      Anonymous
      Inactive

      Hello, I think the supplier data needs to be deleted from the notification emails, can I get help with this?

    • #193540

      Add the below code in the functions.php file of your current active theme :
      https://multivendorx.com/docs/code-snippet/remove-vendor-name/

    • #193545
      Anonymous
      Inactive

      Very good code works great!
      If it’s not a problem, I have one more question:
      The supplier’s management page has its own menu and in it is the “WordPress backend” menu. This website takes the supplier to the admin interface, this is not appropriate, it accesses security plugins and more, can I disable this?
      Another question is what setting is missing, the menus on the supplier’s page take the supplier to a 404 page.

    • #193602

      @webaukcio-eu Not to worry.
      WordPress backend access allows vendors to add a variable, grouped, and external products https://prnt.sc/TdTKjacJxQc4.
      If you still want to hide the wordpress backend menu you can choose any of the below options–
      i) I would request you to get a pro subscription of our plugin https://multivendor.com/pricing/ and disallow backend access from admin dashboard>>settings>>general https://prnt.sc/5O4MHTnAgqkP
      ii)You can also add the below code to the functions.php file of your active theme to restrict vendor from accessing the backend for free –

      add_filter( 'mvx_vendor_dashboard_header_right_panel_nav', 'filter_mvx_vendor_dashboard_header_right_panel_nav', 10, 1 ); 
      function filter_mvx_vendor_dashboard_header_right_panel_nav( $panel_nav ){
      unset($panel_nav ['wp-admin']); //remove Backend Link 
      return $panel_nav ; }
      Copy

      However with this option vendors would be able to add simple products only.
      So, we suggest you go with the first option as the vendors would be able to add different types of products along with other features.

    • #195521

      Its been while and we have not heard back from you. We hope your query is solved now. We are closing this thread. If you need help or face issue in future please open a new thread.

Viewing 13 reply threads

The topic ‘The supplier can only view the turnover of its own products’ is closed to new replies.