InterviewSolution
Saved Bookmarks
| 1. |
How do you disable commenting on articles in Drupal? |
|
Answer» To disable comments in DRUPAL 8, there are two parts.Using Drupal Admin
If you’re using Drupal 7.x/8.x use the following method to disable the comments:
Deleting/disabling the comments can also be executed by the SQL query in the phpMyAdmin. Here are the STEPS to follow: Execute this SQL query in your database UPDATE system SET status = ‘0’ WHERE filename = ‘modules/comment/comment.module’; If you would like to reverse the effect, i.e. enable comments at a later stage, simply change the SET status = ‘1’ |
|