Viewing 1 replies (of 1 total)
  • Plugin Author WPCharitable

    (@wpcharitable)

    You can use the charitable_donations_table_bulk_actions filter to remove the action. I haven’t tested this, but it should work:

    add_filter( 'charitable_donations_table_bulk_actions', 'ed_remove_delete_bulk_action' );
    
    function ed_remove_delete_bulk_action( $actions ) {
        unset( $actions[ 'delete' ] );
        return $actions;
    }
    

    Cheers,
    Eric

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove Delete bulk action in Donation list dashboard?’ is closed to new replies.