Another way is to add an eventRender function. This way you can choose to not render the time, and do something else like append some data to the event.
eventRender: function(event, element) {
element.find('.fc-event-title').append("
" + event.location);
element.find('.fc-event-time').hide();
}