Viewing 1 replies (of 1 total)
  • Plugin Contributor FARAZFRANK

    (@farazfrank)

    Hi Saifmalalla,

    I am sorry! I was looking for that and got the solution.

    File: appointment-calendar-shotcode.php

    Find Code Block: (code line around – 224-229)

    jQuery('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,agendaWeek,agendaDay'
        },

    Append New Code block titleFormat { as below:

    jQuery('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,agendaWeek,agendaDay'
        },
        titleFormat: {
            month: 'MMMM yyyy',  //Month view date format
            week: "MMM d[ yyyy]{ '—'[ MMM] d yyyy}", //WEEK view date format
            day: 'MM/dd' //DAY view date format
        },

    Check the helping doc here for MMM, yyyy, dd.
    These all are date formatting parameters.
    Some thing like:
    dd/MM/yyyy = 01/05/2014
    MMM-dd-yyyy = May-01- 2014
    MMM yyyy = May 2014

    Thanks
    Frank

Viewing 1 replies (of 1 total)
  • The topic ‘Number "1" appearing beside every date.’ is closed to new replies.