Remove tabs from vendor shop page and customize

MultivendorX

Resolved
Viewing 1 reply thread
  • Author
    Posts
    • #190170
      mohsina.mce13
      Participant

      Hello,

      I want to remove the two options highlighted in attached image.
      Also, I want to change the dashboard colour from blue to red.

      Kindly share how to make these changes.

      Thanks,
      Mohsina

    • #190190
      promita
      Keymaster

      Hi mohsina.mce13, to remove those options you can add this code in functions.php of your current active theme :

      
      //remove my shop tab
      add_filter( 'mvx_vendor_dashboard_header_nav', 'remove_my_shop_tab', 10, 1 );
      function remove_my_shop_tab($header_nav) {
          unset($header_nav['shop-link']);
          return $header_nav;
      }
      
      //remove progress bar
      add_filter( 'mvx_vendor_dashboard_show_progress_bar', '__return_false' );
      
      Copy

      To change the dashboard color, Go to admin dashboard >> MultiVendorX >> Settings >> Seller dashboard , from here you can choose different color scheme for the vendor dashboard according to your choice https://prnt.sc/_2Lc32OTw6oV

Viewing 1 reply thread

The topic ‘Remove tabs from vendor shop page and customize’ is closed to new replies.