JEvents - Events for Joomla
Disable 12hour field
By
mrad
on Saturday, 29 August 2020
Posted in
JEvents (Free Access)
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;}
geraint
·
Tuesday, 01 September 2020 12:11
·
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
·
Tuesday, 01 September 2020 09:49
·
0 Likes
·
0 Votes
·
0 Comments
·
#217902
Fantastic, thank you!
mrad
·
Tuesday, 01 September 2020 10:39
·
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
·
Tuesday, 01 September 2020 11:12
·
0 Likes
·
0 Votes
·
0 Comments
·
#217909
ok, thanks!
mrad
·
Tuesday, 01 September 2020 14:05
·
0 Likes
·
0 Votes
·
0 Comments
·
#217916
View Full Post