I created a custom content type with CCK that I'm calling a source. I want to custom theme the source page's the same way I did for the homepage, by modifying the page-front.tpl.php. I tried creating a file called page-source.tpl.php and editting it, but none of the changes show up, as though it's not being read at all (I placed in my themes folder under the theme I'm using (called Jason)). Am I missing something? How do you custom theme pages of custom content types?
P.S. I tried using source-node.tpl.php, and the changes showed up, but the problem with a node is that the sidebar shows up (from the page.tpl.php file, which I don't want to edit) and the new regions I created in the .info file don't work for it (they do work for my page-front.tpl.php file so I know that they can work).
Comments
I don’t think
I don’t think page-{node-type}.tpl.php files are actually supported.
What will work, however, is
if ($node->type == 'source'):in the default page.tpl.php.