Support

Account

Home Forums ACF PRO Time picker increment/steps Reply To: Time picker increment/steps

  • I implemented this JS referencing the JS API.

        acf.add_filter('time_picker_args', function (args, field) {
            args.timeFormat = 'h:mm'
            args.altTimeFormat = 'HH:mm'
            args.stepMinute = 15
    
            return args;
        });