Documentation
- Getting started
- Basic settings
- Pro settings
- Product settings
- Manage bookings
- Localization
- Snippets
- Action and filter hooks
- Third-party plugins
By default, Easy Booking uses the following status: pending, processing, on hold, completed, refunded. If you have other order statuses, you need to add them using this filter.
add_filter( 'easy_booking_get_order_statuses', 'wceb_custom_order_status', 10, 1 ); function wceb_custom_order_status( $statuses ) { $statuses[] = 'wc-partially-paid'; return $statuses; }
Adding a “Customer” column at the beginning.
add_filter( 'easy_booking_custom_import_columns', 'wceb_custom_import_column', 10, 1 ); function wceb_custom_import_column( $columns ) { $columns[] = array( 'id' => 'customer', 'name' => __( 'Customer', 'easy-booking-pro' ), 'position' => 0, ); return $columns; }