Fórum

How to hide a page after user log in

Luca kk, modificado 12 Anos atrás.

How to hide a page after user log in

Expert Postagens: 284 Data de Entrada: 07/12/10 Postagens Recentes
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, modificado 12 Anos atrás.

RE: How to hide a page after user log in

Liferay Master Postagens: 803 Data de Entrada: 10/03/08 Postagens Recentes
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, modificado 12 Anos atrás.

RE: How to hide a page after user log in

Expert Postagens: 284 Data de Entrada: 07/12/10 Postagens Recentes
Hi Jiqnesh,
thanks for reply.
How can I check the login condition?

Luca
thumbnail
Mayur Patel, modificado 12 Anos atrás.

RE: How to hide a page after user log in

Expert Postagens: 358 Data de Entrada: 17/11/10 Postagens Recentes
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, modificado 12 Anos atrás.

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

Expert Postagens: 284 Data de Entrada: 07/12/10 Postagens Recentes
Hi Mayur,
thanks for reply and tip,
it works!!!!!!!!!!!

Luca
thumbnail
Mayur Patel, modificado 12 Anos atrás.

RE: How to hide a page after user log in

Expert Postagens: 358 Data de Entrada: 17/11/10 Postagens Recentes
Good to hear this emoticon , Thanks to jignesh also for pointers !!!!
thumbnail
Jignesh Vachhani, modificado 12 Anos atrás.

RE: How to hide a page after user log in

Liferay Master Postagens: 803 Data de Entrada: 10/03/08 Postagens Recentes
Cheers !!!!! emoticon
thumbnail
Gurumurthy Godlaveeti, modificado 10 Anos atrás.

RE: How to hide a page after user log in

Regular Member Postagens: 208 Data de Entrada: 12/08/11 Postagens Recentes
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, modificado 10 Anos atrás.

RE: How to hide a page after user log in

Expert Postagens: 358 Data de Entrada: 17/11/10 Postagens Recentes
Hi Gurumurthy,

Please create a new thread for this.

Thanks,
thumbnail
Anuvab Ghosh, modificado 8 Anos atrás.

RE: How to hide a page after user log in

Regular Member Postagens: 130 Data de Entrada: 18/04/15 Postagens Recentes
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, modificado 11 Anos atrás.

RE: How to hide a page after user log in

Regular Member Postagens: 143 Data de Entrada: 18/10/12 Postagens Recentes
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, modificado 11 Anos atrás.

RE: How to hide a page after user log in

Liferay Master Postagens: 654 Data de Entrada: 06/01/09 Postagens Recentes
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, modificado 11 Anos atrás.

RE: How to hide a page after user log in

New Member Postagens: 15 Data de Entrada: 11/12/12 Postagens Recentes
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 ?