Skip to content

Instantly share code, notes, and snippets.

@mishterk
Last active July 1, 2020 11:19
Show Gist options
  • Save mishterk/0245c326bc60f7d610afdda68360faa1 to your computer and use it in GitHub Desktop.
Save mishterk/0245c326bc60f7d610afdda68360faa1 to your computer and use it in GitHub Desktop.
How to unset WooCommerce order actions. For more info see https://philkurth.com.au/articles/how-to-unset-woocommerce-order-actions/
<?php
add_filter( 'woocommerce_order_actions', function ( $actions ) {
// Unset whatever actions you don't need available in the
// WooCommerce order edit screen.
unset( $actions['send_order_details_admin'] );
unset( $actions['send_order_details'] );
unset( $actions['regenerate_download_permissions'] );
return $actions;
}, 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment