Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
433 views
in Q2A Core by
How to delete registration form and make that all login tab only for admin. I mean that login tab could only see administrator. Because I wanna make my site all anonimical.

1 Answer

+1 vote
by
edited by
When you don't log in yet, how q2a website now about you? that you are regular visitor or administrator one?

You can close registeration for new users in admin->spam. and you can remove users tab in top of the q2a website in template file by adding this code:

        function nav($navtype, $level=null)
        {
            $navigation=@$this->content['navigation'][$navtype];
        }
 

Then to login you must enter path in explorer manually.
...