Code-Snippets-Functions/Execute a function on a child site/Easy Digital Downloads/alter-payment-list-quick-actions.txt

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 );