Active
Project:
Comment driven
Version:
6.x-1.x-dev
Component:
Theming
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Mar 2012 at 13:03 UTC
Updated:
8 Mar 2012 at 14:37 UTC
I' following the instrucitons at http://www.digett.com/2010/06/29/how-theme-comment-form-drupal-6 and added the following to the end of my basic's template.php
/**
* Implementation of hook_theme.
* Register custom theme functions.
*/
function basic_theme() {
return array(
'comment_form' => array(
'arguments' => array('form' => NULL),
),
);
}
/**
* Customizations to the Comment form.
*/
function basic_comment_form($form) {
return print_r($form);
}
My theme registry is continue being refreshed, but nothing happens at the comment form?
Comments
Comment #1
eiland commentedIt seems it comes from Comment driven that I cant alter the reply form. Disabling the modules lets me alter what I want.