To Hide "Log Message" or "Revision information" from node form in drupal

To Hide "Log Message" manually , use the below code in template.php

function phptemplate_node_form($form) {
 
// Remove 'Log message' text area 
 
$form['log']['#access'] = FALSE;
  return
drupal_render($form);
}


OR 

use the below module


http://drupal.org/project/removelogmessage

Comments

Popular posts from this blog

PHP - How to increase size of POST value in php

D8 KernelEvents constants

D8 - Attach file programmatically to a node