By mrad on Saturday, 29 August 2020
Replies 5
Likes 0
Views 1K
Votes 0
Hi!

Is there a way to disable the 12 hour field in the edit view? (see Screenshot)

Best
Markus
that config option just sets the default value.

To hide it on the form the easiest option is to use css again - you can use the firefox/chrome dom inspector to find the class you need to target.

e.g.

.allDayEvent {display:none;}
·
Tuesday, 01 September 2020 12:11
·
0 Likes
·
0 Votes
·
0 Comments
·
In the backend of JEvents choose the custom css link from the left menu and add this to the custom css file


#jevents .checkbox12h {
display: none !important;
}
·
Tuesday, 01 September 2020 09:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Fantastic, thank you!
·
Tuesday, 01 September 2020 10:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Perhaps one more question:
Is there also an easy way to remove the all day option in the edit view?

I have disabled "Enable All day event by default?" in the backend, but it does not remove it.
·
Tuesday, 01 September 2020 11:12
·
0 Likes
·
0 Votes
·
0 Comments
·
ok, thanks!
·
Tuesday, 01 September 2020 14:05
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post