• Resolved gchesty

    (@gchesty)


    Does anyone know how to disable the time from showing on the calendar page?
    Right now I have the calendar with the time (12a) and event name showing.
    What I would like to have showing is the calendar… then of course the days of the month… and within the day… show only the event name.
    I’ve tried numerous things to no avail. I’m sure it’s something simple that I’m overlooking.
    Thanks for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Are you using WP Fullcalendar or the built in calendar?
    I am using WP Fullcalendar plugin (companion to Events Manager)
    … so it can be done with
    CSS

    .fc-event-time {
        display: none;
    }

    Not sure about the built in calendar.

    Thread Starter gchesty

    (@gchesty)

    Thanks Robswaimea!
    I tried that and it almost worked. So I took out the “event” and that did the trick.

    So here is what I used:

    /*Remove Time from Event Calendar*/
    .fc-time {
    display: none;
    }

    Thanks for the help!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Calendar Time’ is closed to new replies.