Question submission

We have renamed Post Grid plugin to Post Grid Combo
0
Question submission 1
stefanos
Dec 22, 2022 03:34 AM 1 Answers
Member Since Dec 2022
Subscribed Subscribe Not subscribe
Flag(0)

How to set as text only the Editor type for Question submission on Question Answer plugin ?

Thanks

0 Subscribers
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
Question submission 2
Azizul Raju
Dec 22, 2022
Flag(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.

Question submission 3
stefanos
- Dec 22, 2022 02:47 PM
Flag (0)
0

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

Sign in to Reply
Replying as Submit