留言板

How to hide a page after user log in

Luca kk,修改在12 年前。

How to hide a page after user log in

Expert 帖子: 284 加入日期: 10-12-7 最近的帖子
Hi all,
I builded my portal with an initial login form which is a
page called "Login": in this page I have only a "login" portlet.
At beginning, the menu bar has only this page.
After user log in, even the other pages will appear because I set them
with "View" permission for user and not for guest.
The page "Login" has "View" permission for guest
and not for user but automatically it has "View" permission even
for the user (because User is stronger role than Guest).

How can I do to hide "Login" page (for user) after login?

Does it exsist another solution to this?

Thanks in advance.
thumbnail
Jignesh Vachhani,修改在12 年前。

RE: How to hide a page after user log in

Liferay Master 帖子: 803 加入日期: 08-3-10 最近的帖子
you can write your logic in navigation.vm file in theme and check the login condition and render the navigation.vm content accordingly.
Luca kk,修改在12 年前。

RE: How to hide a page after user log in

Expert 帖子: 284 加入日期: 10-12-7 最近的帖子
Hi Jiqnesh,
thanks for reply.
How can I check the login condition?

Luca
thumbnail
Mayur Patel,修改在12 年前。

RE: How to hide a page after user log in

Expert 帖子: 358 加入日期: 10-11-17 最近的帖子
Hello Luca,

Your check in navigation.vm could be like this

#foreach ($nav_item in $nav_items)
            #if(!$nav_item.getName().equals("PagetoHide") || !$is_signed_in)
                            // render the navigation
            #end
#end


Refer Hide page for authenticated users for more

Thanks
Luca kk,修改在12 年前。

RE: How to hide a page after user log in (答复)

Expert 帖子: 284 加入日期: 10-12-7 最近的帖子
Hi Mayur,
thanks for reply and tip,
it works!!!!!!!!!!!

Luca
thumbnail
Mayur Patel,修改在12 年前。

RE: How to hide a page after user log in

Expert 帖子: 358 加入日期: 10-11-17 最近的帖子
Good to hear this emoticon , Thanks to jignesh also for pointers !!!!
thumbnail
Jignesh Vachhani,修改在12 年前。

RE: How to hide a page after user log in

Liferay Master 帖子: 803 加入日期: 08-3-10 最近的帖子
Cheers !!!!! emoticon
thumbnail
Gurumurthy Godlaveeti,修改在10 年前。

RE: How to hide a page after user log in

Regular Member 帖子: 208 加入日期: 11-8-12 最近的帖子
Mayur Patel:
Hello Luca,

Your check in navigation.vm could be like this

#foreach ($nav_item in $nav_items)
            #if(!$nav_item.getName().equals("PagetoHide") || !$is_signed_in)
                            // render the navigation
            #end
#end


Refer Hide page for authenticated users for more

Thanks


Hello Mayur,

I got your point about how to hide a page as per logged in user , but as per my requirement , can u tell me the Liferay solution.

I have one theme & i am going to use it for multiple organizations. I have many number of guest pages & Guest pages vary from one organization to another organization so how to handle in naviagtion.vm .
thumbnail
Mayur Patel,修改在10 年前。

RE: How to hide a page after user log in

Expert 帖子: 358 加入日期: 10-11-17 最近的帖子
Hi Gurumurthy,

Please create a new thread for this.

Thanks,
thumbnail
Anuvab Ghosh,修改在8 年前。

RE: How to hide a page after user log in

Regular Member 帖子: 130 加入日期: 15-4-18 最近的帖子
Mayur Patel:
Hello Luca,

Your check in navigation.vm could be like this

#foreach ($nav_item in $nav_items)
            #if(!$nav_item.getName().equals("PagetoHide") || !$is_signed_in)
                            // render the navigation
            #end
#end


Refer Hide page for authenticated users for more

Thanks


I have almost the same requirement. I want to hide one navigation menu ("Login") after user logged in.
How to do it?
and please tell me how to render or hide it in vm file?

Thanks in advance.
thumbnail
Shivaji C,修改在11 年前。

RE: How to hide a page after user log in

Regular Member 帖子: 143 加入日期: 12-10-18 最近的帖子
Jignesh Vachhani:
you can write your logic in navigation.vm file in theme and check the login condition and render the navigation.vm content accordingly.



Dear Jignesh ,can u tell me the logic crispily, what should i write , i have a login page , just after login of a user, i dont want to show that login page for user in dockbar, for this what logic i have to write, please need help, bcz i dont have any previous knowledge,Thanks
thumbnail
Tejas Kanani,修改在11 年前。

RE: How to hide a page after user log in

Liferay Master 帖子: 654 加入日期: 09-1-6 最近的帖子
Shivaji,

You can make login page hidden so that it wont show in Navigation. And from Control Panel --> Portal Settings you can define the default home page so that every time login page will come up when user opens site.

Thanks,
Tejas
thumbnail
Vikash Pareek,修改在11 年前。

RE: How to hide a page after user log in

New Member 帖子: 15 加入日期: 12-12-11 最近的帖子
Hi Tejas Sir,
It is good logic but if i want to improve this by following way then what should i have to do ?

Guest only view login page and after successfully logged in (become user) view all the page of default site.
Above worked with your logic but i want after successfully logged in he redirect to home page of default site not stay on login page by viewing this message "you are logged in with 'XYZ' ".

For above requirement i have done following 2 attempts :

1.) If i use "default.landing.page.path=/web/guest/home" property then it worked fine but when session time out and user logged in again then user do not redirect to last page at which time out done. In this case user redirect to /web/guest/home due to default.landing.page property.
I have already set "auth.forward.by.last.path=true" property.

2.) If i have set "default.landing.page.path=/c/portal/login" property and did not give view permission to guest for all the page in default site then /c/portal/login page also not visible and error founds "you dont have permission to view this page".

So please tell me what i have to do ?