Disable Marketing hub & analytics woocommerce
Paste code to function.php in Child theme
/* Disable marketing hub & analytics*/
function woocommerce_feature_disabled() {
add_filter('woocommerce_admin_get_feature_config', 'vf_admin_get_feature_config', 10, 1);
function vf_admin_get_feature_config( $features ) {
$features['activity-panels'] = false;
$features['analytics'] = false;
$features['analytics-dashboard'] = false;
$features['analytics-dashboard/customizable'] = false;
$features['homescreen'] = false;
$features['marketing'] = false;
return $features;
}
}
add_action('woocommerce_init', 'woocommerce_feature_disabled', 999);

Last updated