Hello,
I want to have the comment form (textarea) below the comments list. Is there an easy way to do this?
This should be an option on the admin panel I think, since default Wordpress themes have comment forms under comment list and people should be able to keep this when they switch to wpdiscuz.
Thanks in advance
I’m really sorry but there is no way to move comment form to bottom. We can’t find solution yet.
I was looking for this as well. Having comment before the comment form makes it so the comments should have been checked by someone (its no insurance, sure ... but it does make it more likely)
Saw no solution as noted here. Looked at the code. Saw no template override I could use like specified.
Thought of doing this on Document Ready;
if ($("body").hasClass("single")) { $( "form.wc_comm_form.wc_main_comm_form" ).insertAfter( $( "#wcThreadWrapper" ) ); }
And works like charm 🙂
Hmm it seems I screwed up a bit as the reply button did not work that way.
This should fix that;
if ($("body").hasClass("single")) {
$( "#wc-main-form-wrapper-0_0" ).insertAfter( $( "#wcThreadWrapper" ) );
$( ".wpdiscuz-form-bottom-bar" ).insertAfter( $( "#wpdiscuz_hidden_secondary_form" ) );
}
Sorry about that mixup.