Solved this and sharing to save someone else the time!
Results in European Date formatting where desired (e.g. 22.08.2019).
Goes into inline.js on Line 5, right below:
jQuery(document).ready( function($){
var fullcalendar_args = {
// — Start Cal Customisation
timeZone: ‘Europe/Berlin’,
slotLabelFormat:”HH:mm”,
minTime:’07:00′,
maxTime:’22:00′,
scrollTime:’08:00′,
height: ‘auto’,
contentHeight:’100%’,
views: {
basic: {
titleFormat: ‘MMMM YYYY’, columnFormat: ‘dddd’},
agenda: {
titleFormat: ‘MMMM YYYY’,
columnFormat: ‘ddd D.M’,
titleRangeSeparator: ‘ – ‘},
agendaWeek: {
titleFormat: ‘MMMM YYYY’,
columnFormat: ‘ddd D.M’,
titleRangeSeparator: ‘ – ‘},
agendaDay: {
titleFormat: ‘dddd, DD MMMM YYYY’,
columnFormat:’ ‘},
},
// — End Cal Customisation
-
This reply was modified 5 years, 3 months ago by Jineu.