vote up 0 vote down star

I'm just getting round to converting our static HTML website to Drupal. Our website is currently structured into sections, each section having a header, then a list of sub-sections below (for an example see http://www.eurosafeuk.co.uk/services/).

This ties in very nicely with Drupal's "book" module, but I need to customise the display of child pages; by default they're printed as an unordered list of page titles, whereas what I need is to output:

  • A teaser image for each page
  • The page title
  • The page summary

I've looked through the .tpl files, and found that the children are stored in a $tree variable (already HTML formatted). My question is: where do I start if I want to modify this? Does anyone know of a pre-existing module that would do it, or do I need to dig into the code?

flag

71% accept rate
Whatever you do, it's wise to "do like Drupal" and override or hook into an existing module instead of changing a module yourself, which forces you to re-change any new versions of it. In most cases it's easier and safer to alter the existing behaviour of a module by writing your own module than by changing an existing one. – Niels Bom Nov 4 at 14:18

2 Answers

vote up 1 vote down check

Instead of using the Book module which is specifically for a book structure, you might want to look into modules that are made for your case. I haven't looked very well but the Node Hierarchy module might be useful for you. http://drupal.org/project/nodehierarchy

If you want to theme nodes in specific sections in different ways, it's probably a good idea to make separate .tpl files for every section. The way you name those .tpl files makes them applicable to nodes in a certain section.

link|flag
Bingo! Thanks, that's exactly what I was looking for. – Keith Williams Nov 4 at 15:25
I've been meaning to look at drupal.org/project/menu_block, which looks to be a lighter-weight approach to the same sort of idea. – Grayside Nov 7 at 17:29
vote up 0 vote down

Get the devel module, and turn on theme developer. This will tell you the template or function which is used to build the HTML and what templates you can create to override it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.