[ad_1]
After time is selected, cursor is moved to the first field and window is scrolled to 200px from window top position.
You can change scroll offset from window top:
/**
* Change scroll offset from window top in px (Default: 200)
*/
add_filter( 'app_js_data', 'app_js_data' );
function app_js_data( $param ) {
$param['offset'] = 500;
return $param;
}Cheers,
Hakan
Thread Starter
varlot
(@varlot)
Hakan,
thank you. 😀 Works like a charm.
Best regards,
Varlot
