Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
275 views
in Q2A Core by
I have set the permissions for "Viewing question pages:" to Registered User.

But when people come to my QA Site, the Questions still appear...

How do a create a CLOSED forum?
Q2A version: 1.5

1 Answer

+3 votes
by
In qa-theme-base.php

find

$this->main();

replace by

if(qa_get_logged_in_userid())
            {
            $this->main();

}
...