Hi there, Jay! Thanks for getting in touch. π
Great question. Unfortunately, a start and end date is required when publishing event posts.
The idea to “Hide the Date” for specific events posts is interesting and something you might want to suggest on our UserVoice page as a feature to include in a future release.
We often append the event category as class names where events are displayed, so it might be possible for you to categorize these placeholder events in a category called “TBD” (or something like that) and target those specific post in CSS. For example, you could hide the date and times in the Month View tooltip for events in the “TBD” category, like this:
.cat_tbd .tribe-events-tooltip .duration {
display: none;
}
This would need to be done similarly for each instance where the date and time display. Yes, it’s a little hacky, but it’s probably the simplest way of getting it done for the time being.
Does this help answer your question? Please let me know. π
Cheers!
Geoff