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;
}
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