The Events Calendar 4.2 // Remove "This event has passed" notice on single-event.php in a specific category
// Removes the passed event notice for events in a speicifc category
add_filter( 'tribe_the_notices', 'customize_notice', 10, 2 );
function customize_notice( $html, $notices ) {
// If text is found in notice, then replace it
if (tribe_event_in_category('formation-sur-demande') && stristr( $html, 'This event has passed.' ) ) {
// Customize the message as needed
$html = str_replace( '', $html );
}
return $html;
}