Notifications
Clear all

Take comment form below comments list

4 Posts
3 Users
0 Likes
1,703 Views
(@serhan)
Active Member
Joined: 6 years ago
Posts: 5
Topic starter  

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


   
Quote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5912
 

I’m really sorry but there is no way to move comment form to bottom. We can’t find solution yet.


   
ReplyQuote
PatrickD
(@patrickd)
Member Customer
Joined: 6 years ago
Posts: 18
 

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 🙂


   
ReplyQuote
PatrickD
(@patrickd)
Member Customer
Joined: 6 years ago
Posts: 18
 

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.


   
ReplyQuote
Share:
Scroll to top