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

StackOverflow https://stackoverflow.com/questions/21804453

  •  12-10-2022
  •  | 
  •  

سؤال

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

هل كانت مفيدة؟

المحلول

  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

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top