Foren

How to hide a page after user log in

Luca kk, geändert vor 12 Jahren.

How to hide a page after user log in

Expert Beiträge: 284 Beitrittsdatum: 07.12.10 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: How to hide a page after user log in

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
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, geändert vor 12 Jahren.

RE: How to hide a page after user log in

Expert Beiträge: 284 Beitrittsdatum: 07.12.10 Neueste Beiträge
Hi Jiqnesh,
thanks for reply.
How can I check the login condition?

Luca
thumbnail
Mayur Patel, geändert vor 12 Jahren.

RE: How to hide a page after user log in

Expert Beiträge: 358 Beitrittsdatum: 17.11.10 Neueste Beiträge
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, geändert vor 12 Jahren.

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

Expert Beiträge: 284 Beitrittsdatum: 07.12.10 Neueste Beiträge
Hi Mayur,
thanks for reply and tip,
it works!!!!!!!!!!!

Luca
thumbnail
Mayur Patel, geändert vor 12 Jahren.

RE: How to hide a page after user log in

Expert Beiträge: 358 Beitrittsdatum: 17.11.10 Neueste Beiträge
Good to hear this emoticon , Thanks to jignesh also for pointers !!!!
thumbnail
Jignesh Vachhani, geändert vor 12 Jahren.

RE: How to hide a page after user log in

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge
Cheers !!!!! emoticon
thumbnail
Gurumurthy Godlaveeti, geändert vor 10 Jahren.

RE: How to hide a page after user log in

Regular Member Beiträge: 208 Beitrittsdatum: 12.08.11 Neueste Beiträge
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, geändert vor 10 Jahren.

RE: How to hide a page after user log in

Expert Beiträge: 358 Beitrittsdatum: 17.11.10 Neueste Beiträge
Hi Gurumurthy,

Please create a new thread for this.

Thanks,
thumbnail
Anuvab Ghosh, geändert vor 8 Jahren.

RE: How to hide a page after user log in

Regular Member Beiträge: 130 Beitrittsdatum: 18.04.15 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: How to hide a page after user log in

Regular Member Beiträge: 143 Beitrittsdatum: 18.10.12 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: How to hide a page after user log in

Liferay Master Beiträge: 654 Beitrittsdatum: 06.01.09 Neueste Beiträge
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, geändert vor 11 Jahren.

RE: How to hide a page after user log in

New Member Beiträge: 15 Beitrittsdatum: 11.12.12 Neueste Beiträge
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 ?