隐藏Woocommerce Admin编辑订单页面中的一些按钮

时间:2017-12-02 00:21:36

标签: css wordpress button woocommerce orders

我为此疯狂,我一整天都在寻找解决方案。我知道应该可以通过display: none; css解决这个问题,但我无法让它工作。

我正在尝试删除"添加产品","添加费用"和"添加运费"的按钮。

enter image description here

1 个答案:

答案 0 :(得分:1)

您应该尝试隐藏一些订单按钮的 admin_head 操作中隐藏的自定义函数:

add_action( 'admin_head', 'hidding_some_order_buttons' );
function hidding_some_order_buttons() {
    echo '<style>
        .post-type-shop_order .wc-order-add-item > button.add-order-item,
        .post-type-shop_order .wc-order-add-item > button.add-order-fee,
        .post-type-shop_order .wc-order-add-item > button.add-order-shipping{
            display: none !important;
        }
    </style>';
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

经过测试和工作。你会得到这样的东西:

enter image description here