<%# NOTE: The code below is an exact duplication of `spree_core/views/checkout/_delivery.html.erb“ We overwrote the original so we retain access to it by cloning it here. Feel free to update the code below according to the original if needed! %>
<%= t("shipping_method") %>

<% @order.rate_hash.each do |shipping_method| %> <% next if shipping_method[:id] == @order.digital_shipping_method[:id] %>
<% end %>

<% if Spree::Config[:shipping_instructions] && @order.rate_hash.present? %>

<%= form.label :special_instructions, t("shipping_instructions") %>
<%= form.text_area :special_instructions, :cols => 40, :rows => 7 %>

<% end %>
"/>