We have renamed Post Grid plugin to Post Grid Combo
0
stefanos
How to set as text only the Editor type for Question submission on Question Answer plugin ?
Thanks
0 Subscribers
Submit Answer
1 Answers
Best Answer
0
Hi Stefanos,
Welcome to PickPlugins.
Currently, this feature isn't available. But our team is ensuring you that we'll add this feature in our next update.
Regards.
Thanks.
Great, now to do that I’ve added the wordpress function to leave the editor active only to me as administrator:
function disable_visual_editor($can)
{
if(!current_user_can( ‘manage_options’ )) return false;
return $can;
}
add_filter(‘user_can_richedit’, ‘disable_visual_editor’);
Two other useful options I would ask you:
1) If a person does not want to allow registrations to the site, the login request must also be masked. Which I’ve done now with css. The current version shows the access login to my site and for security reasons it is not indicated.
2) It would be very useful to be able to have an indication of the page from which the request is made. Let me explain. I’ve placed your plugin below every article on my blog to give people the ability to ask questions about what they’ve read. However, I don’t know which article they sent from. It would be sufficient to automatically add the url of origin at the end of their text.
There is a bug in the program which assigns an anonymous question to the latest subscriber to the site. Luckily I have no users and I have only one subscriber called ANONYMOUS USER otherwise the questions are assigned to users of some kind
Thank you