Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom template for specific node in Drupal 6?

I know there are a ton of different custom template files like page.tpl.php and node.tpl.php etc. But is there a way to make a custom template for a specific node ID? This doesn't work node-3.tpl.php, but is there a way to accomplish this?

UPDATE CODE

function phptemplate_preprocess_node(&$vars) {
    $vars['template_files'][] = 'node-' . $vars['nid'];
}
like image 657
Erich H. Avatar asked Oct 06 '22 23:10

Erich H.


1 Answers

For Drupal 6, the page template is 'page-node-3.tpl.php' and read the manual at http://drupal.org/node/1089642

Drupal 7, page--node--3.tpl.php : http://drupal.org/node/1089656

Thanks @Clive and @asiby.

like image 66
AKS Avatar answered Oct 11 '22 01:10

AKS