Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could somebody tell me how can I remove input filter chooser from comment form in Drupal 6?

Regards

share|improve this question

2 Answers

up vote 0 down vote accepted
Administer > Site Configuration > Input Formats

Click configure for each of the formats, and edit who can use the roles as necessary.

share|improve this answer

Another way is to use jquery. This is nice if you want more granular control over displaying the comment input filter. One way to hide it is using the following code:

$("label:contains('Filtered HTML')").parent().parent().parent().hide();

You can put this in your theme's .js file if you have one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.