Last active
February 17, 2021 03:44
-
-
Save frankyonnetti/5944754 to your computer and use it in GitHub Desktop.
Drupal 7 - remove homepage field in comments #drupal #d7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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