Hi Christina,
There is indeed not a simple option or switch with which this can be turned on or off on the front-end of your site.
You will need to write custom CSS to hide this.
Try adding the following CSS to the bottom of your theme’s style.css file:
div.tribe-events-meta-group.tribe-events-meta-group-other {
display: none !important;
}
That should hide that for you. For any further CSS tweaks to hide – other fields to hide, link color changes, all that sort of stuff – use a free tool like Firebug if you use FireFox, or the Developer Tools for either Safari or Chrome. They call come with “Inspector” tools that help you write custom CSS like I shared above.
Cheers!
George