在Woocommerce管理订单列表中有条件地隐藏特定操作按钮

时间:2018-01-23 10:44:49

标签: php css wordpress woocommerce orders

我想在订单管理页面添加一些CSS来隐藏自定义订单操作按钮,但前提是该订单仅包含可下载的产品。

这是我需要有条件加载的功能:

add_action( 'admin_head', 'hide_custom_order_status_dispatch_icon' );
function hide_custom_order_status_dispatch_icon() {
    echo '<style>.widefat .column-order_actions a.dispatch { display: none; }</style>';
}

这可能吗?

1 个答案:

答案 0 :(得分:1)

使用CSS,不可能

相反,您可以挂钩woocommerce_admin_order_actions过滤器挂钩,您可以检查所有订单商品是否可下载,然后移除操作按钮&#34; dispatch&#34;

add_filter( 'woocommerce_admin_order_actions', 'custom_admin_order_actions', 900, 2 );
function custom_admin_order_actions( $actions, $the_order ){
    // If button action "dispatch" doesn't exist we exit
    if( ! $actions['dispatch'] ) return $actions;

    // Loop through order items
    foreach( $the_order->get_items() as $item ){
        $product = $item->get_product();
        // Check if any product is not downloadable
        if( ! $product->is_downloadable() )
            return $actions; // Product "not downloadable" Found ==> WE EXIT
    }
    // If there is only downloadable products, We remove "dispatch" action button
    unset($actions['dispatch']);

    return $actions;
}

代码进入活动子主题(或活动主题)的function.php文件。

这是未经测试但应该有用......

  

您必须检查'dispatch'是否为此操作按钮正确的slug ...