I' would like to remove the "site"-inputfield in the comment form in Wordpress twenty eleven. Someone who knows the answer? Thanks in advance.
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
you can try adding this filter to your theme's functions.php:
|
|||
|
|
|
To remove any field you should pass the $args of which fields you want to be showed in your form. Exemple:
You just have to comment the line of the Website, and pass the array like in the exemple. If you want further reading on how to customize your form with the function comment_form(); you should read this Codex page |
|||
|
|
|
Go to wp-content\themes\suffusion\comments.php file suffusion is my theme name , you should go to your respective theme folder find this block of code
and just comment the url field . |
||||
|
|
protected by toscho♦ Nov 21 '12 at 8:14
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.