Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active February 17, 2021 03:44
Show Gist options
  • Save frankyonnetti/5944754 to your computer and use it in GitHub Desktop.
Save frankyonnetti/5944754 to your computer and use it in GitHub Desktop.
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;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment