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

eiland’s picture

Project: Basic » Comment driven
Version: 6.x-2.9 » 6.x-1.x-dev
Component: Code » Theming
Category: support » bug

It seems it comes from Comment driven that I cant alter the reply form. Disabling the modules lets me alter what I want.