Hi
first, thanks for this useful plugin
I want to move comment text box bottom after name and email and etc.
I use this snippet code :
// move comment form textarea function move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'move_comment_field_to_bottom');
its worked for default wp comments template, Like below image :
But when I enable wpdiscuz it doesn't work and brings the textarea back to the top again, Like below image :
Is there a simple snippet code like the one above that to do Move wpdiscuz comment text box to bottom?
Hi,
We're really sorry, but the wpDiscuz doesn't have such a feature. You can do it via the following CSS code:
#wpdcom form {
display: flex;
flex-direction: column-reverse;
}
Insert the code in the "Custom CSS code" textarea, located in the Dashboard > wpDiscuz > Settings > Styles & Colors admin page.
Not a good solution.
The submit button will appear at the top of the comment text field !
Is there no way to do this by changing the snippet code I posted above?
this is really awesome plugin, but I wonder why there is not comment text field in form editing page 🤔