Notifications
Clear all

wpForo 1.x.x [Closed] Leave A Reply Box

9 Posts
5 Users
2 Likes
17.4 K Views
Sapere Aude
Posts: 56
Topic starter
(@sapere-aude)
Trusted Member
Joined: 6 years ago

Hello!

Is it possible to remove the "Leave A Reply" box from the bottom of post pages? I kind of like the idea of forcing users to use the Reply menu option at the bottom of each post

8 Replies
Posts: 393
(@anonymous3542)
Honorable Member
Joined: 7 years ago

I'd like to see something like this too

Sofy
Posts: 4310
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi

I'm sorry, but there is no any option for this purpose. 

Please follow these steps:

1. install and activate the Simple Custom CSS and JS plugin.

2. put the following CSS code as shown in the screenshot

#wpf-form-wrapper{
display: none;

3. put the following JS code as shown in the screenshot:

jQuery(".wpforo-reply.wpf-action").click(function(){
jQuery("#wpf-form-wrapper").show();
});

 

4. do CTRL+F5 on the frontend.

Sapere Aude
Posts: 56
Topic starter
(@sapere-aude)
Trusted Member
Joined: 6 years ago

Thank you!

Any chance of this becoming part of the core rather than having to install yet another plug in? If so, I'll wait 🙂

Posts: 393
(@anonymous3542)
Honorable Member
Joined: 7 years ago
Posted by: Sofy

Hi

I'm sorry, but there is no any option for this purpose. 

Please follow these steps:

1. install and activate the Simple Custom CSS and JS plugin.

2. put the following CSS code as shown in the screenshot

#wpf-form-wrapper{
display: none;

3. put the following JS code as shown in the screenshot:

jQuery(".wpforo-reply.wpf-action").click(function(){
jQuery("#wpf-form-wrapper").show();
});

 

4. do CTRL+F5 on the frontend.

Just a quick addition to this. I've included the "show reply" function, but there is a section missing if you want "quote" to work the same way without having to press "reply" first.

<script type="text/javascript">
jQuery(".wpforo-reply.wpf-action").click(function(){
jQuery("#wpf-form-wrapper").show();
});
</script>
<script type="text/javascript">
jQuery(".wpf-action.wpforo-quote").click(function(){
jQuery("#wpf-form-wrapper").show();
});
</script>
Page 1 / 2