문제

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