clubgetaway
|
October 17, 2024 at 7:30 am
Hi – I would like to remove/hide the event name and the dates/time at the bottom of the registration pages. Please see this example – https://events.clubgetaway.com/events/camp-for-adults-event-template/
It is the info at the bottom under where people purchase the tickets. Is there a CSS code for that?
|
Tony
|
October 17, 2024 at 7:51 am
Hi there,
Just to note, thats the Datetime details, so your seeing the Datetime name, date and time set.
But, yes, that can be hidden with CSS:
.single-espresso_events .event-datetimes {
display: none;
}
Add that to Appearance -> Customize -> Additional CSS.
|
clubgetaway
|
October 17, 2024 at 9:08 am
Thanks Tony – that worked great. What about the “Sales Dates” section of the ticket description drop down?
Sale Dates
– The dates when this option is available for purchase.
Goes On Sale: September 24, 2024 2:10 pm
Sales End: July 11, 2025 5:00 pm
|
Tony
|
October 17, 2024 at 9:18 am
Yep:
.tckt-slctr-tkt-sale-dates-sctn {
display: none;
}
|