Hello @annamacccc ,
Unfortunately, there is no built-in option to change the default sort order in the backend attendee list. However, you can achieve this by adding the following code to your theme’s functions.php file:
add_action( 'load-toplevel_page_rsvp-pro-top-level', function() {
if ( isset( $_GET['action'] ) && $_GET['action'] === 'attendees' && ! isset( $_GET['orderby'] ) ) {
wp_redirect( add_query_arg( array( 'orderby' => 'lastName', 'order' => 'ASC' ) ) );
exit;
}
} );
This will automatically sort the attendee list by last name (A–Z) by default. You can still click on any column header to manually change the sort order at any time.
If you have any other questions, feel free to reach out!