2
Well, yes there are.
There is such feature called groups in the admin panel.
Just untick whatever you dont want unregistered users to NOT see.
You can even separate your users into different group experiencing different blocks access .
As for the submit news sublink , you have to edit the templates to get what you want .(remove the link for unregistered) .
Since today is a good day as any , here is how to do it .
Go to your admin panel , system--> templates .. Clone your default templates giving it a name ( because you cannot edit default templates ).
After that go to system --> blocks
See the main menu on the list ? click on the edit on the right side.
After this ,, there is a edit template on the right block .Click on that
An editor came out .
find these
Quote:
<{foreach item=sublink from=$module.sublinks}>
<{/foreach}>
and changed to
Quote:
<{if ($xoops_isuser==1)}>
<{foreach item=sublink from=$module.sublinks}>
<{/foreach}>
<{/if}>
then goto ... system-->preferences-->general settings-->
find
"Default template set" , and change the default to the new template name that you have cloned.And you're done.