/** Disable the scroll on field validation errors * * @link https://wpforms.com/developers/how-to-disable-the-scrolling-effect-on-field-validation/ */ function wpf_dev_disable_scroll_to_error_by_form_id( $forms ) { // If scrollToError is disabled for at least one form on the page, it will be disabled for all the forms on the page. foreach ( $forms as $form ) { // Only run snippet on the form ID 4083 if ( isset( $form[ 'id' ] ) && (int) $form[ 'id' ] === 4083 ) { ?>