Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
551 views
in Q2A Core by
Like the Dropbox vote:

https://www.dropbox.com/votebox

Is there a way to make readonly category like "In Progress" or "Completed". Only admin can move questions to this category, and no one can be post in it.

1 Answer

0 votes
by

You could do this with some custom programming - modify function qa_category_options(...) in qa-app-post-create.php to exclude that specific category from being available for general users creating or editing questions - you can check whether it's an admin currently logged in by:

if (qa_get_logged_in_level()>=QA_USER_LEVEL_ADMIN) { ... }

by
@Gidgreen: could you tell more details?
...