Is there a way of removing sections for people AFTER they have logged in. I have one section that says to register... Obviousely, after they register they do not need to see this. Is there any way to remove after someone has logged in. Thank you
I'm not sure you can do that with Joomla! only, I think you will need a user management module. Community builder maybe.
I solved it with module, something like this: <?php defined( '_VALID_MOS' ) or die( 'Restricted access' ); if ( $my->id ) {} else echo 'Please <a href="http://fubom.com/index.php?option=com_smf&Itemid=2&action=login">login</a> or <a href="http://fubom.com/index.php?option=com_smf_registration&task=register">register</a> to view <font color="red"><b>many more images</b></font>, to play <font color="red"><b>tournaments</b></font> and <font color="red"><b>challenges</b></font>!! It is completely <font color="red"><b>FREE</b></font>! You can also get <a href="http://fubom.com/index.php?option=com_content&task=view&id=1&Itemid=8">e-books</a> valued over <strong>$2000</strong> for <font color="red"><b>FREE</b></font>!'; ?> Code (markup):