rob5408
rob5408

Reputation: 2982

Drupal 7 Template Suggestions

I think in Drupal 6- I needed to add the suggestion of 'node-NID' to the list of template files that were candidates for a node with an nid of 10. Supposedly this is already done in Drupal 7 and indeed I see 'node__10' in my node's theme_hook_suggestions. This should translate to 'node--10.tpl.php', but with that file in place (/sites/all/themes/mytheme/templates/node--10.tpl.php) I don't see the content in that file.

I've also tried node-10.tpl.php, page-node-10.tpl.php with varying numbers of hyphens to no avail.

What am I doing wrong?

Upvotes: 1

Views: 1199

Answers (1)

Laxman13
Laxman13

Reputation: 5211

Try putting node--10.tpl.php in /sites/all/themes/mytheme instead of in the templates folder and be sure to clear the cache (admin/settings/performance) to allow Drupal to see the template override.

Upvotes: 1

Related Questions