Home › Support Forums › Theme Support › Pinboard › fields in the form comments › Reply To: fields in the form comments
Daniel Tara
Keymaster
Add this code to your child theme’s functions.php file:
function pinboard_child_comment_form_fields( $fields ) { $textarea = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $textarea; return $fields; } add_filter( 'comment_form_fields', 'pinboard_child_comment_form_fields' );