How to make the Registration page the index home page.

Hi, everybody just want to say thanks for the  big help, elgg is truly a great community.. 

Does anybody know how to make the elgg registration page the home index page?

I was thinking of something like a simple index redirect or something ... I'm already doing a domain redirect that redirects all users to the registration and login link but it causes major problems when people click on the site name which causes browsers to show errors do to having to do to many redirects.  

I'm using a template theme called social pro. Would elgg index.php need to be edited or the theme somehow? 

Any help would be very appreciated.. 

  • You can simply add a redirect in the index page to the registration page

    if(!isloggedin()){

    forward('pg/register');

    }

    If you are looking for registration form in index page, you can call the registration form by including the elgg view for it in the index page

    echo elgg_view('account/forms/register');

  • Thanks Team Webgalli I did just that and it works!!!

     

    You came to save the day I see you responded to a lot of questions!!! lol