Vojtech Vitek - golang.cz
Vojtech Vitek - golang.cz

Reputation: 27736

Drupal 6 - How can I disable comments on all nodes / content_types?

How can I disable comments on all already existing nodes and disable comments by default for all content_types?

Upvotes: 2

Views: 596

Answers (1)

Vojtech Vitek - golang.cz
Vojtech Vitek - golang.cz

Reputation: 27736

  1. Run the following SQL query to disable comments on all existing nodes:

    UPDATE node SET comment=0  WHERE 1;
    
  2. Go to /admin/content/types -> Edit each content_type -> Disable comments by default

Upvotes: 3

Related Questions