Banner Logo

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

hide widget in vendor dashboard (map, qna, transaction detail) – Multivendor X

MultivendorX

Resolved
Viewing 3 reply threads
  • Author
    Posts
    • #144099
      sksgjsxj
      Participant

      Question : how to hide widget in vendor dashboard (map, qna, transaction detail)

      If you have css code, can you please point it out?

      Previously, I downloaded and used wcmp. but It looks like wcmp has been upgraded to multivendorX.

    • #144362

      @sksgjsxj, our team will check and get back to you.
      Kindly provide them some time.

      We will also reply regarding this thread here https://multivendorx.com/support-forum/topic/how-to-hide-withdrawal-parts-in-vendor-dashboard/#post-144303

    • #144432

      Hi,
      Use to below code in your currently active theme functions.php file to remove all those section

      add_filter( 'mvx_before_dashboard_widget', 'filter_before_mvx_dashboard_widget', 10, 1 );
      function filter_before_mvx_dashboard_widget( $vendor_dashboard_widget ) {
          unset($vendor_dashboard_widget['side']['mvx_vendor_transaction_details']); //remove Transaction Details widget
          unset($vendor_dashboard_widget['normal']['mvx_vendor_visitors_map']);  // remove Visitors Map widget
          unset($vendor_dashboard_widget['side']['mvx_vendor_products_cust_qna']);  //remove customer question
          return $vendor_dashboard_widget;
      }
      Copy

      For https://multivendorx.com/support-forum/topic/how-to-hide-withdrawal-parts-in-vendor-dashboard/#post-144303 this thread please follow the below direction –

      Override this template by copying it to yourtheme/MultiVendorX/vendor-dashboard/dashboard-widgets/mvx-vendor-stats-reports.php
      then remove lines no 48 – 52 and 58 (as per the initial line)
      Thanks

    • #148533

      We haven’t heard back from you. We presume this issue has been fixed, so we are closing this one.
      if you need any further help, please do open another thread.

Viewing 3 reply threads

The topic ‘hide widget in vendor dashboard (map, qna, transaction detail) – Multivendor X’ is closed to new replies.