Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

Questions on First Page (Front Page) still visible

0 votes
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
asked Feb 2 in Q2A Core by lloyde

1 Answer

+3 votes
In qa-theme-base.php

find

$this->main();

replace by

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

}
answered Feb 3 by jonkon