Rog, i think, u got me wrong.
geodir_event_schedule_times is a hook and it passed time slot array to the function u hook into for example
u can write something like this in ur theme’s functions.php file
add_filter(‘geodir_event_schedule_times’ , ‘geodir_modified_time_slots’);
function geodir_modified_time_slots($time_slot_array)
{
// write a code to modify the $time_slot_array
//and return it back
return $time_slot_array;
}
Please advise?