mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/49562272/add-custom-bulk-actions-to-admin-orders-list-in-woocommerce-3
6 lines
194 B
Text
6 lines
194 B
Text
add_filter( 'bulk_actions-edit-shop_order', 'remove_a_bulk_order_action', 20, 1 );
|
|
function remove_a_bulk_order_action( $actions ) {
|
|
unset($actions['mark_on-hold']);
|
|
|
|
return $actions;
|
|
}
|