Skip to content

Instantly share code, notes, and snippets.

@dasginganinja
Created January 28, 2015 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasginganinja/7a3b25c7de5f15de5c5f to your computer and use it in GitHub Desktop.
Save dasginganinja/7a3b25c7de5f15de5c5f to your computer and use it in GitHub Desktop.
Drupal 7 Remove Breadcrumb and Title from homepage
function east_penn_trucks_20141222_preprocess_page(&$vars, $hook) {
// Remove the Breadcrumb and Title from the homepage
if ($vars['is_front']) :
$vars['breadcrumb'] = '';
$vars['title'] = '';
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment