diff --git a/app/views/locations/show.html.erb b/app/views/locations/show.html.erb
index 2060a6e0f..bacfaacc1 100644
--- a/app/views/locations/show.html.erb
+++ b/app/views/locations/show.html.erb
@@ -23,6 +23,6 @@
<% end %>
-<% if !Rails.env.production? %>
+<% if FeatureToggle.location_toggle_enabled? %>
<%= govuk_button_link_to "Deactivate this location", location_deactivate_path(location_id: @location.id, id: @scheme.id), warning: true %>
<% end %>
diff --git a/config/initializers/feature_toggle.rb b/config/initializers/feature_toggle.rb
index ca4315e9e..d3ab1db57 100644
--- a/config/initializers/feature_toggle.rb
+++ b/config/initializers/feature_toggle.rb
@@ -14,4 +14,10 @@ class FeatureToggle
false
end
+
+ def self.location_toggle_enabled?
+ return true unless Rails.env.production?
+
+ false
+ end
end