Manage all Bookings
Display booking of all customer.
1: List Bookings:
Go to Bookings >> All Bookings

2: Booking Detail
Click title in order booking to edit it. You can click "Create and send ticket": If the ticket of that booking does not exist, the system will create it and send it to customers' email.

1: You can click link in Payment method to check payment detail in WooCommerce

2: Click "Create and Send Tickets" button: The system will create Tickets for booking (if the ticket isn't exists ) and send mail for customer
3: Click "View Invoice": The admin will see PDF Invoice file
4: Click "Send Invoice": The system will send PDF Invoice to customer's mail.
3: Create Booking in backend
If a customer books at agency, the admin can make manual booking. Bookings >> Add New >> Select an Event, then insert other info and Cart.

4: Develop
In Booking List: If you want to only display Completed Booking, you can add filter hook in functions.php file of child theme.
add_filter( 'el_manage_bookings_show_status_admin', function(){ return 'Completed'; } );
In Booking List: If you want to only display Pending Booking, you can add filter hook in functions.php file of child theme.
add_filter( 'el_manage_bookings_show_status_admin', function(){ return 'Pending'; } );
Last updated
Was this helpful?