Select motnh on the calendar instead of moving one by one

Issue #448 resolved
Valentina R created an issue

It's not just that one has to move one by one but also have to wait for the calendar to load in order to click forward. Having a box for selecting a month would be very useful.

Asked here: https://bookingwp.com/forums/topic/calendar-format/

Comments (1)

  1. Željan Topić

    From 4.2.9.6 onward, the following filter will add month and/or year selection:

    add_filter( 'wc_appointment_form_params', 'bwp_add_month_year_selection', 10, 2 );
    function bwp_add_month_year_selection( $appointment_form_params, $appointment_form ) {
        $appointment_form_params['changeMonth'] = true;
        $appointment_form_params['changeYear'] = true;
    
        return $appointment_form_params;
    }
    
  2. Log in to comment