• Hi, is it possible in any way to hide the hour(s) that are not considered working hours?

    At the moment it just the entire 8am to 8pm range on the scheduling screen, with ‘break’ hours just showing with X’s in them. I’d like to hide all the rows for 10:00 AM to 3:00 PM as they are considered ‘closed’ 7 days a week

    Is this possible at all?

    https://wordpress.org/plugins/appointments/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter pogomonkey

    (@pogomonkey)

    Also, is it at all possible to show how many remaining spots are left in a session time?

    Ie if a service session has a capacity of 10 per hour, and 2 have booked, have the scheduler show ‘8’?

    Plugin Contributor Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hey pogomonkey,

    Hope you’re doing well today 🙂

    I’m assuming you’re having brake time on same time each day and want to completely remove that column, is that correct?

    If yes then you can use some CSS like this to achieve that:

    .appointments-list tbody tr:nth-child(5) {
        display: none;
    }

    Where 5 is your row number.

    You can add this code in Appointments > Settings > General > Additional css Rules field.

    Also, is it at all possible to show how many remaining spots are left in a session time?

    Unfortunately something like this is not possible and would actually require some custom coding to make it work, I’ll however mention it to our developer so he can consider adding something like that in future 🙂

    Cheers,
    Predrag

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

The topic ‘Hide 'breaks' from calendar’ is closed to new replies.