Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove Welcome to in Drupal 8

How to remove "Welcome to" from header title on front page in Drupal 8

enter image description here

In drupal 7 you just add in page.tpl.php this part of code:

<?php if (!$is_front){
print render($page['content']);
} ?>
like image 723
Edin Puzic Avatar asked Nov 25 '15 21:11

Edin Puzic


People also ask

How do I change the front page in Drupal 8?

In the Manage administrative menu, navigate to Configuration > System > Basic site settings (admin/config/system/site-information). Under Front page, replace /node with the name of the page you would like to make the home page. To use the home page that was previously created, provide its path /home.

How do I disable a module in Drupal 8?

in Drupal 8, you don't disable modules: You just install or uninstall them, but that is different from disabling them, since disabling them would not remove the configuration nor the database tables used from the module.


1 Answers

In D8 frontpage is a view. To change title of the front page, go to admin/structure/views/view/frontpage, find Global: Title override link

enter image description here

Open it and it will allow to set or remove custom front page title.

like image 169
pavlovich Avatar answered Sep 19 '22 01:09

pavlovich