Any extensions for my problem? - Joomla! Forum - community, help and support
part of site opened public , part, registered users only. right now, links require registered not showing in front-end.
what see links, "non-registered user" not able access them until registered.
and, able grayed-out links, or send end-user page requesting registration.
is there extension can trick or other ways welcome?
thanks
what see links, "non-registered user" not able access them until registered.
and, able grayed-out links, or send end-user page requesting registration.
is there extension can trick or other ways welcome?
thanks
if registered menu items coexist non-registered items in same menu, won't work. if can alter menu items reside in registered , non-registered menu's work you.
ok, in template can create single location module displayed non-registered users , separate module displayed registered users. purposes of example, we'll call module positions "regmenu" , "nonregmenu"
edit template , alter location module inserted , alter code following:
your nonregmenu can display correct menu button names, link alternate pages suggest user registers access content.
ok, in template can create single location module displayed non-registered users , separate module displayed registered users. purposes of example, we'll call module positions "regmenu" , "nonregmenu"
edit template , alter location module inserted , alter code following:
code: select all
<?php
$user=jfactory::getuser();
if($user->get('guest'))
{ ?>
<jdoc:include type="modules" name="nonregmenu" />
<?php } else { ?>
<jdoc:include type="modules" name="regmenu" />
<?php } ?>
your nonregmenu can display correct menu button names, link alternate pages suggest user registers access content.
Comments
Post a Comment