Quantcast
Channel: theming
Viewing all articles
Browse latest Browse all 6

Remove the "No front page content has been created yet." in the default Drupal installation

$
0
0
/**
* Implements template_preprocess_page().
*/
function YOUR_THEME_preprocess_page(&$vars) {
  // Remove the "No front page content has been created yet.".
  if (isset($vars['page']['content']['system_main']['default_message'])) {
    unset($vars['page']['content']['system_main']['default_message']);
  }
}

Viewing all articles
Browse latest Browse all 6

Trending Articles