All I need is to show a different homepage to authenticated users so I selected redirect to "node" for anonymous users, the problem is that instead of the regular homepage it is force to a URL that really shows the "/node". Blocks that regularly show up on the homepage do not appear unless I include "node" on pages the blocks are to appear on. Also the breadcrumbs are showing and there is no mission statement.

Comments

Dublin Drupaller’s picture

Assigned: Unassigned » Dublin Drupaller
Status: Active » Closed (works as designed)

when you redirect away from the front page...the front_page.module no longer controls the output....

Use this in the text area for anon users and select the php option to display the regular default www.example.com/node node listing..

   print node_page_default();
fumbling’s picture

Thanks, this helped me with the same issue, appreciate the snippet.