- <%= back_link_to help_path %>
+ <% if feature?(:help_page) %>
+ <%= back_link_to help_path %>
+ <% end %>
<%= t('pages.help.titles.how_to_use') %>
diff --git a/app/views/welcome/welcome.html.erb b/app/views/welcome/welcome.html.erb
index d647ba8e6..c8a3641a4 100644
--- a/app/views/welcome/welcome.html.erb
+++ b/app/views/welcome/welcome.html.erb
@@ -40,7 +40,11 @@
<%= link_to(t("welcome.welcome.user_permission_verify_my_account"), verification_path, class: "button success radius expand") %>
<% end %>
-
- <%= link_to t("welcome.welcome.go_to_index"), proposals_path %>
+
+ <% if feature?(:help_page) %>
+ <%= link_to t("welcome.welcome.go_to_index"), help_path %>
+ <% else %>
+ <%= link_to t("welcome.welcome.go_to_index"), root_path %>
+ <% end %>
diff --git a/db/dev_seeds/widgets.rb b/db/dev_seeds/widgets.rb
index 884bd7cb8..f8cc83ff1 100644
--- a/db/dev_seeds/widgets.rb
+++ b/db/dev_seeds/widgets.rb
@@ -21,7 +21,7 @@ section "Creating header and cards for the homepage" do
label_en: 'Welcome to',
label_es: 'Bienvenido a',
- link_url: 'help_path',
+ link_url: 'http://consulproject.org/',
header: TRUE,
image_attributes: create_image_attachment('header')
)