radiusinvestigations
August 8, 2019 at 10:26 am
I am using version 4.9.75.p
I would like to remove or hide the end time for events
Is there a way to do this?
Josh
August 8, 2019 at 10:39 am
Add New Note to this Reply
Hi,
May I ask where exactly do you want to remove the end time from? For example, the calendar, the event page, or the event list page?
radiusinvestigations
August 8, 2019 at 10:42 am
Add New Note to this Reply
I’d like them removed from all
Josh
August 8, 2019 at 11:46 am
Add New Note to this Reply
You’ll follow this guide:
https://gist.github.com/lorenzocaum/0b9e748cf873f1d1b80e
Then, to remove the end time (only) from the calendar, you’ll add the following CSS to your site’s custom CSS editor:
.event-end-time {
display: none;
}
radiusinvestigations
August 8, 2019 at 1:53 pm
Add New Note to this Reply
Thank you very much! I was able to remove the end time using the link you provided.
Could you provide a little more direction on how to remove it from the calendar?
Josh
August 8, 2019 at 1:57 pm
Add New Note to this Reply
You go to Appearance > Customize > Additional CSS, then add:
.event-end-time {
display: none;
}
Then click Publish
radiusinvestigations
August 8, 2019 at 2:02 pm
Add New Note to this Reply
It worked! How do I get rid of the – ?
Josh
August 8, 2019 at 3:50 pm
Add New Note to this Reply
You can get rid of the – by adding the following code:
https://gist.github.com/joshfeck/5084be36b1dcf8c8955007603b92eb2e
you’ll add that code to the same plugin you added in step one from the other guide I mentioned earlier.
radiusinvestigations
August 23, 2019 at 11:59 am
Add New Note to this Reply
it worked! Thank you so much for all of your help!!