掲示板

How to hide a page after user log in

12年前 に Luca kk によって更新されました。

How to hide a page after user log in

Expert 投稿: 284 参加年月日: 10/12/07 最新の投稿
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
12年前 に Jignesh Vachhani によって更新されました。

RE: How to hide a page after user log in

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
you can write your logic in navigation.vm file in theme and check the login condition and render the navigation.vm content accordingly.
12年前 に Luca kk によって更新されました。

RE: How to hide a page after user log in

Expert 投稿: 284 参加年月日: 10/12/07 最新の投稿
Hi Jiqnesh,
thanks for reply.
How can I check the login condition?

Luca
thumbnail
12年前 に Mayur Patel によって更新されました。

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
12年前 に Luca kk によって更新されました。

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

Expert 投稿: 284 参加年月日: 10/12/07 最新の投稿
Hi Mayur,
thanks for reply and tip,
it works!!!!!!!!!!!

Luca
thumbnail
12年前 に Mayur Patel によって更新されました。

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
12年前 に Jignesh Vachhani によって更新されました。

RE: How to hide a page after user log in

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
Cheers !!!!! emoticon
thumbnail
10年前 に Gurumurthy Godlaveeti によって更新されました。

RE: How to hide a page after user log in

Regular Member 投稿: 208 参加年月日: 11/08/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
10年前 に Mayur Patel によって更新されました。

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
8年前 に Anuvab Ghosh によって更新されました。

RE: How to hide a page after user log in

Regular Member 投稿: 130 参加年月日: 15/04/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
11年前 に Shivaji C によって更新されました。

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
11年前 に Tejas Kanani によって更新されました。

RE: How to hide a page after user log in

Liferay Master 投稿: 654 参加年月日: 09/01/06 最新の投稿
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
11年前 に Vikash Pareek によって更新されました。

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 ?