Default Validation Steps in Spree
- Address
- Delivery
- Payment
- Make sure
Spree allows you to modify the validation process to add or remove steps using appropriate helpers.
- insert_checkout_step
- remove_checkout_step
In your case, you should go with remove_checkout_step (to remove the verification step) Remove_checkout_step removes only one verification step at a time:
- remove_checkout_step: address
- remove_checkout_step: delivery
source share