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
I'd like to see something like this too
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.
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 🙂
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>