• Resolved EncodeDotHost

    (@encodedothost)


    Is it possible to hide ALL event details so that the time would should as busy but that the HTML output only shows “Booked”?

    Happy to use with a child-theme or custom plugin. Do you have any code snippet that would override the default output?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author LBell

    (@lbell)

    Not a way to do that through the plugin, but you could try some CSS magic. This might get you started:

    .fc-event-title{
    font-size: 0;
    }

    .fc-event-title:before {
    content: ‘Busy’;
    font-size: 1rem;
    }

    Thread Starter EncodeDotHost

    (@encodedothost)

    Thanks. That has worked perfect. 👍

    One last question, is it possible to show the start AND finish time on the main overview?

    Plugin Author LBell

    (@lbell)

    Yup! You can use the experimental fc_args shortcode argument: fc_args='{"displayEventEnd":"true"}'

    Thread Starter EncodeDotHost

    (@encodedothost)

    That’s great. Thank you.

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

The topic ‘Hide ALL event details’ is closed to new replies.