Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Remove single product tabs from Vendor Dashboard

WCMp Advanced Frontend Manager

Tagged: 

Resolved
Viewing 3 reply threads
  • Author
    Posts
    • #135324
      gisella
      Participant

      Hello, I need some directions to remove the following tabs from single products in the Vendor Dashboard:

      – shipping
      – linked products
      – attributes
      – advanced

      Attached the screenshot of tabs I’m referring to. Thanks!

    • #135369

      Hi Gisella, please add this code in the function.php of the theme to remove the fields :

      function remove_linked_products($tabs)
      { 
      unset($tabs['shipping']); 
      unset($tabs['linked_product']); 
      unset($tabs['attribute']); 
      unset($tabs['advanced']); 
      return($tabs); 
      } 
      add_filter('wcmp_product_data_tabs', 'remove_linked_products', 10, 1);
      Copy
    • #135413
      gisella
      Participant

      Worked fine, thanks!

    • #135428

      We are happy to help Gisella 🙂

      We would love it if you shared your experience by giving us 5/5 review here : https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/#new-post
      Seeing glowing reviews from existing customers makes others more comfortable knowing they’ll get the support they need should an issue with our services arise.

Viewing 3 reply threads

The topic ‘Remove single product tabs from Vendor Dashboard’ is closed to new replies.