I selecting which fields to show in the Headers and in the Body of my nodes, in the “Manage Fields” settings of my content type.
However I would like to have different order for header elements and node elements.
Is this feasable ?
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There a number of ways you can achieve this. One of them is through the panels module – http://drupal.org/project/panels – another is through the node template file. If you are able to edit your Drupal theme, you could create a new template file for the type of node you wish to customise – called node-[type].tpl.php in your theme directory. You can base this template file on node.tpl.php, and instead of echoing out the body of the node, you choose which fields from the node object you wish to use. See http://drupal.org/theme-guide for more.