Ive figured out how to add the meta info into the loop on the home page so now it looks more like an event than a latest post. I want to keep the name of the place where the event is happening but hide the address. The user can get the address on the event page.
The page in question is here:
http://naidevsite1.us/
I was able to hide the actual address by using this CSS:
.tribe-events-event-meta address.tribe-events-address {display: none;}
But I am still left with the “Address:” section. it doesnt seem to have a span ID or class, only a label, so I cant seem to hide it. I have tried:
.tribe-table-field-label label[Address] {display: none !important;}
but it was ineffective. Any idea of how I might keep the name of the place but remove the address from the feed?