eventorganiser_booking_tickets_sold_out
(filter)
Pro
Filters the message displayed when there are no more tickets available for the event
By default this is "
This event has sold out
"
Parameters
string
|
$message |
HTML mark-up for the message displayed.
|
Example Usage
add_filter( 'eventorganiser_booking_tickets_sold_out', 'my_callback_function', 10, 1 );
function my_callback_function( $message ){
//Change first value and return it
return $message
};