frankyonnetti
7/7/2013 - 8:15 PM

#drupal 7 remove homepage field in comments

Drupal 7 - remove homepage field in comments #drupal #d7

<?php
/**
 * Remove homepage field in comments in template.php
 * http://www.digett.com/blog/05/26/2011/how-theme-comment-form-drupal-7
 */
  function THEMENAME_form_comment_form_alter(&$form, &$form_state) {
    $form['author']['homepage']['#access'] = FALSE;
  }
?>