Skip to content

Instantly share code, notes, and snippets.

@zachattack
Created July 18, 2013 21:15
Show Gist options
  • Save zachattack/6033158 to your computer and use it in GitHub Desktop.
Save zachattack/6033158 to your computer and use it in GitHub Desktop.
Unset a block title in Drupal 7 with preprocess.
function YOURTHEME_preprocess_block(&$variables, $hook) {
// Unset the block titles in the region of choice.
if ($variables['block']->region == 'region-you-target') {
unset($variables['block']->subject);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment