If you ever wondered how to change the page.tpl.php for a custom content type you've found out that by default Drupal 6 doesn't know how to do it.
It's "fixed" easily by adding the following code:
/**
* Override or insert PHPTemplate variables into the templates.
*/
function phptemplate_preprocess_page(&$vars) {
// Add per content type pages
if (isset($vars['node'])) {
// Add template naming suggestion. It should alway use hyphens.
// If node type is "custom_news", it will pickup "page-custom-news.tpl.php".
Recent comments
8 weeks 3 days ago
9 weeks 2 days ago
16 weeks 13 hours ago
16 weeks 3 days ago
18 weeks 54 min ago
20 weeks 6 days ago
25 weeks 2 days ago
30 weeks 2 days ago
35 weeks 6 days ago
42 weeks 6 days ago