Here's a guide on how to use these new parameters:
Scenario 1: You have more private pages than public pages
Go into page content, and for each of your public pages add 'pub-' to the beginning of the page alias
In your template, use something resembling this code (ymmv):
Code: Select all
{if isset($customcontent_loggedin) && $customcontent_loggedin > 0}
{menu}
{else}
{menu includeprefix='pub-'}
{/if}
Scenario 2: You have more public pages than private pages
Go into page content, and for each of your private pages add 'priv-' to the beginning of the page alias
in your template, use something resembling this code (ymmv):
Code: Select all
{if isset($customcontent_loggedin) && $customcontent_loggedin > 0}
{menu}
{else}
{menu excludeprefix='priv-'}
{/if}
I hope you all understood this, and can now have a fully flexible menu.