I'm already alter the form like this but the value not change..

function custom_comment_form_alter(&$form, $form_state, $form_id) {
        $form['submit']['#value'] = 'Post';
    }
}

Thanks

Comments

akongz’s picture

This case happen if I active the ajax plugin comment...

walker2238’s picture

You need to change your module weight to be higher than the ajax module.

Pls’s picture

Yes, as pointed out in #2, ajax module (actually ajax_comment) uses ajax_comment_ajax_alter for comment_form, so you have to adjust your module weight to be higher than ajax.module. Here is more info about to change modules weight: http://drupal.org/node/110238. Cheers!