diff --git a/app/views/spree/checkout/_distributor.html.haml b/app/views/spree/checkout/_distributor.html.haml
deleted file mode 100644
index 24f656709b..0000000000
--- a/app/views/spree/checkout/_distributor.html.haml
+++ /dev/null
@@ -1,4 +0,0 @@
-.columns.omega.six
- %fieldset#shipping
- %legend Distributor
- = render 'enterprises/distributor_details', :distributor => @order.distributor
diff --git a/app/views/spree/checkout/_other_available_distributors.html.erb b/app/views/spree/checkout/_other_available_distributors.html.erb
deleted file mode 100644
index 765c71640a..0000000000
--- a/app/views/spree/checkout/_other_available_distributors.html.erb
+++ /dev/null
@@ -1,13 +0,0 @@
-<% if @order.state == 'address' %>
-
- <% unless alternative_available_distributors(@order).empty? %>
- <%= form_for(@order) do |f| %>
- <%= f.label :distributor_label, "Alternative distributors for this order:" %>
- <%= f.select :distributor_id, options_for_select( enterprises_options(alternative_available_distributors(@order)) ) %>
- <%= f.submit "Change Distributor" %>
- <% end %>
- <% else %>
- No alternative distributors available.
- <% end %>
-
-<% end %>
diff --git a/app/views/spree/checkout/_summary.html.erb b/app/views/spree/checkout/_summary.html.erb
deleted file mode 100644
index 125254177e..0000000000
--- a/app/views/spree/checkout/_summary.html.erb
+++ /dev/null
@@ -1,36 +0,0 @@
-
-<%= t(:order_summary) %>
-
-
-
-
- | <%= t(:item_total) %>: |
- <%= order.display_item_total %> |
-
-
-
- <% adjustments = checkout_adjustments_for_summary(order) %>
- <% adjustments.each do |adjustment| %>
-
- | <%= adjustment.label %>: |
- <%= adjustment.display_amount.to_html %> |
-
- <% end %>
-
-
-
- | <%= t(:order_total) %>: |
- <%= @order.display_total.to_html %> |
-
- <% if order.price_adjustment_totals.present? %>
-
- <% @order.price_adjustment_totals.each do |label, total| %>
-
- | <%= label %> |
- <%= total %> |
-
- <% end %>
-
- <% end %>
-
-