need register menu to be hidden when logged in - Joomla! Forum - community, help and support
how can "hide" register button in menu when user logged in? want replace member's info button.
thanks
http://www.dpalliance.ca/index.php
(joomla 1.5.14)
thanks
http://www.dpalliance.ca/index.php
(joomla 1.5.14)
in template:
replace 10 in .item10 id of menu item
note: works on menu if menu's module set 'list'.
code: select all
<?php
$user =& jfactory::getuser();
if( !$user->guest ): ?>
<style type="text/css">
.item10 { display:none; }
</style>
<?php endif; ?>
replace 10 in .item10 id of menu item
note: works on menu if menu's module set 'list'.
Comments
Post a Comment