Remove the ‘other seller’ button and tabs (see photo)

MultivendorX Pro

Resolved
Viewing 2 reply threads
  • Author
    Posts
    • #216811
      FRESHOPP FRESHOPP
      Participant

      Good morning,
      How to delete circled things on an item sheet? Knowing that I want to keep the sharing of products between sellers.

      THANKS

    • #216813

      Hello there, Thanks for getting in touch with us.
      To remove the vendor and the question answer tabs from the single product page kindly add the below code in the functions.php file of your current active theme –

      
      add_filter( 'woocommerce_checkout_fields', 'md_custom_woocommerce_checkout_fields' );
      add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 99 );
      function woo_remove_product_tabs( $tabs ){
      	unset( $tabs['vendor'] );     //  vendor tab
      	unset( $tabs['mvx_customer_qna'] ); // Questions & Answers
      	return $tabs;
      }
      
      Copy

      Generally if the “SPMV” option is enabled in your site (http://tinyurl.com/2x744yp7), we display the More Offer tab to show whether other vendors are also selling the same product.
      Now if you want to remove that you can add custom code. So, add this code in the function.php of the current active theme :

      
      add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 99 );
      function woo_remove_product_tabs( $tabs ){
          unset( $tabs['singleproductmultivendor'] ); // More Offer
          return $tabs;
      }
      
      Copy

      Let us know if you need any further assistance from our end.

    • #218704

      It’s been long and we have not heard back from you. We presume your query is resolved now. We are closing this thread. If you need help or face issue in future please do create a new support ticket.

Viewing 2 reply threads

The topic ‘Remove the ‘other seller’ button and tabs (see photo)’ is closed to new replies.