mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
https://github.com/easydigitaldownloads/library/blob/master/_admin/alter-payment-list-quick-actions.html
7 lines
283 B
Text
7 lines
283 B
Text
function ck_edd_remove_payment_delete_action( $row_actions, $payment ) {
|
|
if ( !current_user_can( 'delete_shop_payment' ) )
|
|
unset( $row_actions['delete'] );
|
|
|
|
return $row_actions;
|
|
}
|
|
add_filter( 'edd_payment_row_actions', 'ck_edd_remove_payment_delete_action', 10, 2 );
|