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