How to display article to only non-registered visitors - Joomla! Forum - community, help and support
i have article on front page, want display unregistered visitors. once has logged in, don't want displaying on front page. how that? ok making articles show registered users, want reverse. thanks,
would require coding. not sure depth of coding start digging through com_content.
you need put hook somewhere using below code wherever articles looped through.
$user =& jfactory::getuser();
// logic check article id, if match following code
if($user->guest){
// show article
}
i wouldn't recommend hacking com_content. maybe see if doable plug-in if coding.
you need put hook somewhere using below code wherever articles looped through.
$user =& jfactory::getuser();
// logic check article id, if match following code
if($user->guest){
// show article
}
i wouldn't recommend hacking com_content. maybe see if doable plug-in if coding.
Comments
Post a Comment