Hi @Picflick
Kindly add the below code in the functions.php file of your current active theme to remove the customer questions tab from the single product page –
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 99 );
function woo_remove_product_tabs( $tabs ){
unset( $tabs['mvx_customer_qna'] ); // Questions & Answers
return $tabs;
}
And to remove the customer questions submenu from the vendor dashboard add the below code in the functions.php file in your current active theme –
add_filter('mvx_vendor_dashboard_nav', 'callback_mvx_vendor_dashboard_nav', 99);
function callback_mvx_vendor_dashboard_nav($vendor_nav){
unset($vendor_nav['store-settings']['submenu']['products-qna']);
return $vendor_nav;
}