Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
382 views
in Q2A Core by
Is there an option that users who register can be approve only by admins?

1 Answer

+1 vote
by
Please try the settings below.

1. Admin > Spam > Enable moderation (approval) of users = ON
2. Admin > Spam > All new users must be approved = ON ※1

※1 This setting is displayed by turning 1 on.

Administrators and moderators can approve user registrations. If there is not moderators on your site, only administrators (Super Admin included) will be able to approve user registration.
by
How to make only admin approve? not moderators
by
+1
It can not be realized with plugin. It will need to hack the core source.

qa-include/pages/admin-default.php (around L1717)
Before:
'value' => qa_lang_html('options/permit_moderators'),
After:
'value' => qa_lang_html('options/permit_admins'),

AND

qa-include/app/admin.php (around L506) qa_admin_single_click()
Before:
if (isset($useraccount) && qa_get_logged_in_level() >= QA_USER_LEVEL_MODERATOR) {
After:
if (isset($useraccount) && qa_get_logged_in_level() >= QA_USER_LEVEL_ADMIN) {
by
Thanks, one last question
the plugin, show-online-users-count, as I do so that my nick does not appear when I log in

Welcome to the Q&A site for Question2Answer.

If you have a question about Q2A, please ask here, in English.

To report a bug, please create a new issue on Github or ask a question here with the bug tag.

If you just want to try Q2A, please use the demo site.

Categories

...