Choose month, not just next month

Issue #381 resolved
Valentina R created an issue

Right now the calendar opens on current month, to get 5 months in future one has to click 5 times on the arrow and wait 5 times for each month to load. It's very time consuming.

Reported here: https://bizzthemes.com/forums/topic/plugin-is-slooow

Comments (2)

  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. Valentina R reporter

    Newer version of the plugin only accepts 1 param. Here is the new snippet:

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