i wanted to setup cash on delivery and in store pick as my shipping options. So when the user selects the in store pick up the address is set to store location.
these are the changes i made to order_decorator.rb
Spree::Order.class_eval do
remove_checkout_step :payment
checkout_flow do
go_to_state :delivery
go_to_state :address
go_to_state :confirm
go_to_state :complete
end
end
when i checkout after adding some items i get unshippable items
do i have to change the code in checkout.rb file
are there any good guides on solidus
Thank you