JEvents - Events for Joomla
Disable 12hour field
By
mrad
on Saturday, 29 August 2020
Posted in
JEvents (Free Access)
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;}
geraint
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#217912
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;
}
geraint
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#217902
Fantastic, thank you!
mrad
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#217908
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.
mrad
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#217909
ok, thanks!
mrad
·
4 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
#217916
View Full Post