hi,
1. is there a way to hide the header table? (only on agendaDay )
2. is there a way to format the date that appear in fc-agenda-days header?
it currently display “day of the week, m/d –> i want it to display in the following format dd/MM/yyyy
thanks!
Heli

Rachel Druskin
1. There’s no option but can add the following to your theme to hide it:
.fc-agenda-days thead{
visibility: hidden;
}
This might work better if disable the all-day part: alldayslot=false
2. Yes, using the titleformatday
attribute (see the shortcode’s documentation page)

Stephen Harris
Time formats always use php format. So to get 27/01/2015
you would put d/m/Y

Stephen Harris
hi Stephen,
i want to hide the whole part of the headerLeft, headerCenter, headerRight.
i see that both the month calendar and the daily agenda use the same css classes – so i cannot
distinct the visibility part for the agenda…
as for the date format – thanks! i’ll update it accordingly.
thanks!
Heli

Rachel Druskin
hi Stephen,
another question – is there a way to merge headerLeft and headerCenter?
thanks!

Rachel Druskin
Hi Rachel,
Unfortunately it’s not possible to merge the headerLeft and headerCenter, but you if you wanted to hide the header you can do the following:
[eo_fullcalendar headerLeft="" headerRight=""]

Stephen Harris