留言板

top menu

thumbnail
Gabriel Leon Leyva,修改在12 年前。

top menu

Regular Member 帖子: 243 加入日期: 09-6-20 最近的帖子
is there a way to hide top menu from logged users? thanks
thumbnail
Jignesh Vachhani,修改在12 年前。

RE: top menu

Liferay Master 帖子: 803 加入日期: 08-3-10 最近的帖子
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,修改在12 年前。

RE: top menu

Regular Member 帖子: 243 加入日期: 09-6-20 最近的帖子
thanks, I added #if ($permissionChecker.isOmniadmin()) to portal_normal.vm so only admin users can see top menu.
thumbnail
Gabriel Leon Leyva,修改在12 年前。

RE: top menu

Regular Member 帖子: 243 加入日期: 09-6-20 最近的帖子
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,修改在12 年前。

RE: top menu

Liferay Master 帖子: 803 加入日期: 08-3-10 最近的帖子
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,修改在12 年前。

RE: top menu

Liferay Master 帖子: 679 加入日期: 09-4-17 最近的帖子
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,修改在12 年前。

RE: top menu

Regular Member 帖子: 243 加入日期: 09-6-20 最近的帖子
I've done this by the user role, only employees can see dockbar. Thanks.

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