Jul 25, 2018 8:10 am
And also for edit... you can shorten the script somewhat too - just paste the below
jQuery(".wpforo-reply.wpf-action").click(function(){
jQuery("#wpf-form-wrapper").show();
});
jQuery(".wpf-action.wpforo-quote").click(function(){
jQuery("#wpf-form-wrapper").show();
});
jQuery(".wpforo-edit.wpf-action").click(function(){
jQuery("#wpf-form-wrapper").show();
});
If you have a theme that supports additional JS, you can do this without the plugin quoted by @sofy (as I am doing)
Jul 25, 2018 11:09 am
Thank you very much @anonymous3542, I only suggest you use a shorter version of the code:
jQuery(".wpforo-reply.wpf-action, .wpf-action.wpforo-quote, .wpforo-edit.wpf-action").click(function(){
jQuery("#wpf-form-wrapper").show();
});
Dec 08, 2023 5:41 pm
Thank you!
Is there a possibility of integrating this into the core system instead of requiring the installation of yet another plugin? If that's the case, I'm willing to wait
Page 2 / 2
Prev