Remove fields in the comment section
-
I’m using a Child Theme of the Ignite Plus Theme. Now I want to remove the “Email” an the “URL” field in the comment section. I tried adding the following function to the function.php of the Child Theme but it doesn’t fits.
function my_fields($fields) { $fields['email'] = ''; $fields['url'] = ''; return $fields; } add_filter('comment_form_default_fields','my_fields');
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Remove fields in the comment section’ is closed to new replies.