By mrad on Saturday, 29 August 2020
Replies 5
Likes 0
Views 716
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;}
·
4 years ago
·
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;
}
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
Fantastic, thank you!
·
4 years ago
·
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.
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
ok, thanks!
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post