简体   繁体   English

删除“主页”并直接转到 WordPress 管理仪表板上的 WooCommerce“订单”

[英]Remove "Home" and go direct to WooCommerce "Orders" on WordPress Admin dashboard

Using the most recent version of WooCommerce, there's a "Home" section that I cannot remove using any built in setting.使用最新版本的 WooCommerce,我无法使用任何内置设置删除“主页”部分。

I have managed to remove the analytics and marketing option, but how do I remove the "Home" option and that way, make it like it always was before -- an overview of all orders?我已经设法删除了分析和营销选项,但是我如何删除“主页”选项,这样才能让它像以前一样——所有订单的概述?

add_filter( 'woocommerce_admin_get_feature_config', 'remove_wc_marketing_menu_option', 10, 1 );
function remove_wc_marketing_menu_option($feature_config){   
$feature_config['marketing'] = false;
$feature_config['analytics'] = false;
return $feature_config;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM