eventorganiser_delete_booking_ticket
(action)
Pro
Triggered immediately before a ticket in a booking is deleted.
Parameters
int
|
$booking_ticket_id |
The ID of the booking's ticket
|
int
|
$booking_id |
The ID of the booking the ticket belongs to
|
Example Usage
add_action( 'eventorganiser_delete_booking_ticket', 'my_callback_function', 10, 2 );
function my_callback_function( $booking_ticket_id, $booking_id ){
//Do something
};