Foren

top menu

thumbnail
Gabriel Leon Leyva, geändert vor 12 Jahren.

top menu

Regular Member Beiträge: 243 Beitrittsdatum: 20.06.09 Neueste Beiträge
is there a way to hide top menu from logged users? thanks
thumbnail
Jignesh Vachhani, geändert vor 12 Jahren.

RE: top menu

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
you can do this with theme code chnages :

you need to update below code in portal-normal.vml file of theme

#if ($is_signed_in)
#dockbar()
#end

Here this code shows that docbar will be visible once user is logged in if you want to hide after login then you can reverse the if condition.


Regards,
Jignesh
liferaycms blog
thumbnail
Gabriel Leon Leyva, geändert vor 12 Jahren.

RE: top menu

Regular Member Beiträge: 243 Beitrittsdatum: 20.06.09 Neueste Beiträge
thanks, I added #if ($permissionChecker.isOmniadmin()) to portal_normal.vm so only admin users can see top menu.
thumbnail
Gabriel Leon Leyva, geändert vor 12 Jahren.

RE: top menu

Regular Member Beiträge: 243 Beitrittsdatum: 20.06.09 Neueste Beiträge
I added
#if ($permissionChecker.isOmniadmin())
#dockbar()
#end

to portal_normal.vm on the theme templates so only admins could see dockbar, but how do I make that also organization users or community users could see also de dockbar??


Thanks in advance
thumbnail
Jignesh Vachhani, geändert vor 12 Jahren.

RE: top menu

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
you may have to check the roles for logged-in user and need to compare with specific org or community member or admin role in the condition.
thumbnail
Sagar A Vyas, geändert vor 12 Jahren.

RE: top menu

Liferay Master Beiträge: 679 Beitrittsdatum: 17.04.09 Neueste Beiträge
Gabriel Leon Leyva:
I added
#if ($permissionChecker.isOmniadmin())
#dockbar()
#end

to portal_normal.vm on the theme templates so only admins could see dockbar, but how do I make that also organization users or community users could see also de dockbar??


Thanks in advance


Hi Gabriel ,

In your case i guess instead of checking who can see the doc bar , check for reverse condition who can not see docbar.

Like if Particular role can not see it then put condition accordingly emoticon

Thanks,
Sagar Vyas
thumbnail
Gabriel Leon Leyva, geändert vor 12 Jahren.

RE: top menu

Regular Member Beiträge: 243 Beitrittsdatum: 20.06.09 Neueste Beiträge
I've done this by the user role, only employees can see dockbar. Thanks.

#foreach ($role in $roles)
#if($role.getName()=="Employee")
#dockbar()
#end