Skip to content

Instantly share code, notes, and snippets.

@hafriedlander
Created August 23, 2012 22:04
Show Gist options
  • Select an option

  • Save hafriedlander/3442554 to your computer and use it in GitHub Desktop.

Select an option

Save hafriedlander/3442554 to your computer and use it in GitHub Desktop.
How to remove a field from the comment form
<?php
Object::add_extension('CommentingController', 'CommentingControllerExtension');
<?php
class CommentingControllerExtension extends Extension {
function alterCommentForm(Form $form) {
$fields = $form->Fields();
$fields->removeByName('URL');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment