How to theme (or do anything else with) some filed of particular node? What tpl.php file to create in order to override that field, and only that field, and only in that node? For example body field just for node/5.

And just one similar question. What tpl.php file to create in order to override particular field, in particular page?
Thanks in advance!

Comments

SidneyGijzen’s picture

Take a look at this page for theming suggestions. You can easily override node pages for content types or specific NID by adhering to certain tpl naming conventions. The aforementioned page lists all the possibilities.

You can for example make a tpl with the name node--5.tpl.php to theme a node page with nid 5.

natttan’s picture

Thanks.