Posted by neochief on August 3, 2009 at 8:37pm
Adds option to place comment form above the comments thread.
Installation
1. Enable module.
2. Go to your content type and set Location of comment submission form to Display below post, but before comments.
3. Check your node. If form present — celebrate, otherwise proceed to next step.
4. Paste this code to your theme's template.php file:
/**
* Allow themable wrapping of all comments.
*/
function phptemplate_comment_wrapper($content, $node) {
if (!$content || $node->type == 'forum') {
return '<div id="comments">'. $content .'</div>';
}
else {
return '<div id="comments"><h2 class="comments">'. t('Comments') .'</h2>'. $content .'</div>';
}
}5. Clear Drupal's cache. Check your node. Celebrate.
Caution: If your theme contains comment-wrapper.tpl.php file, do not perform step 4. Just add
<?php
print $form;
?>Project Information
- Module categories: Content Display
- Maintenance status: Unknown
- Development status: Unknown
- Reported installs: 461 sites currently report using this module. View usage statistics.
- Last modified: August 3, 2009