Dzoic Handshakes Hack - Limit Guests To access specified Page
ALWAYS BACK UP YOUR FILES THEN START
However Now you can set limits for users only like for which package which certain pages and modules should be accessed!? also you can set Open Access to all, or Only for Users but still if you would like to go with Open Access For All, but still you need to limit access to specified pages on your site you will need to
A. Open the template file from themes/{yourtheme}/templates/source/pages/{pagename}.tpl
and at the very top where there is nothing else copy the code from here and paste it there
{if $info.im_access && $info.mem_id}
that will check if user is logged in or not then if user is logged in the contents will be displayed
but if User is not logged in
B. at the very bottom of the page at the end of all other contents add
{else}
then if user is not logged in you can write your custom message for the Guest maybe some thing like
[Sorry Access to this page is only available for the User Registration is free click here to Register]
You are not done, you have to add
C: now at the very end after you added the texts for guests and {else} you need to close the open {if} clause by
{/if}
You Are done,
and for DUMMIES IT WILL LOOK LIKE
{if $info.im_access && $info.mem_id}
this is a user page and all details here are accessible by users only
{else}
OOOOOPS You are an un-invited Guest you need to REGISTER to be welcomed to this page.
{/if}

