Fix for Fix for Hide page titles for certain node types in page.tpl.php

  1. function mytheme_preprocess_page(&$vars, $hook) {
  2.   if (isset($vars['node'])) {
  3.     if($vars['node']->type == 'article') {
  4.       unset($vars['title']);
  5.     }
  6.   }
  7. }

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.