I added new checkout step using official doc , i need to display my step in between shipping and payment.
As per the documentation To display step content between shipping step and payment step 1 < "sortOrder" < 2
so I have added following code
checkout_index_index.xml
item name="sortOrder" xsi:type="string">1.5</item>
your_module_dir/view/frontend/web/js/view/my-step-view.js
initialize: function () { this._super(); stepNavigator.registerStep( 'select_student_step', null, 'Select Student', this.isVisible, _.bind(this.navigate, this), 15 ); return this; }
this creates my steps like this
when I click NEXT
in shipping method it directly taking me to payment page, that is weird. Any idea ?