Foros de discusión

Redirection to a user profile page.

Vaneet Sharma, modificado hace 15 años.

Redirection to a user profile page.

Regular Member Mensajes: 195 Fecha de incorporación: 25/07/08 Mensajes recientes
Hi,

How can we redirect to a user profile page whenver a user link is clicked on a Message Board / Blog .

Currently it is redirected to the user My Community public page .

Thanks
thumbnail
Jerry Niu, modificado hace 15 años.

RE: Redirection to a user profile page.

Expert Mensajes: 451 Fecha de incorporación: 21/06/06 Mensajes recientes
I think the two pages you refer to is the same.

But, if they not, you need to modify the link to goto where you want.

if you want a programmatic way, look into the "defaultlandingpage" in the Portal Admin guide.
Vaneet Sharma, modificado hace 15 años.

RE: Redirection to a user profile page.

Regular Member Mensajes: 195 Fecha de incorporación: 25/07/08 Mensajes recientes
For changing the URL i need to edit the param (user) of <iferay-ui:user-display> tag.

But can anbody tell me how can i get the profile page URL for every user
Vaneet Sharma, modificado hace 15 años.

RE: Redirection to a user profile page.

Regular Member Mensajes: 195 Fecha de incorporación: 25/07/08 Mensajes recientes
Any help !
thumbnail
The Meurwinn Concept, modificado hace 15 años.

RE: Redirection to a user profile page.

Expert Mensajes: 261 Fecha de incorporación: 10/04/06 Mensajes recientes
Jerry Niu:
I think the two pages you refer to is the same.

But, if they not, you need to modify the link to goto where you want.

if you want a programmatic way, look into the "defaultlandingpage" in the Portal Admin guide.


Yes, you can implement your redirection with the "user id"
Vaneet Sharma, modificado hace 15 años.

RE: Redirection to a user profile page.

Regular Member Mensajes: 195 Fecha de incorporación: 25/07/08 Mensajes recientes
Any example or code snippet for this.
thumbnail
The Meurwinn Concept, modificado hace 15 años.

RE: Redirection to a user profile page.

Expert Mensajes: 261 Fecha de incorporación: 10/04/06 Mensajes recientes
All you need is in "http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Customizing+the+default+page+after+login"
Vaneet Sharma, modificado hace 15 años.

RE: Redirection to a user profile page.

Regular Member Mensajes: 195 Fecha de incorporación: 25/07/08 Mensajes recientes
The Meurwinn Concept:
All you need is in "http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Customizing+the+default+page+after+login"



Guys , let me reiterate my question :

While viewing a message thread or a blog , if the user name (just beneath the photo) is clicked , then it should open the profile page of the user.

For achieving this where should i make the changes ?
thumbnail
Gnaniyar Zubair, modificado hace 15 años.

RE: Redirection to a user profile page.

Liferay Master Mensajes: 722 Fecha de incorporación: 19/12/07 Mensajes recientes
Hi Vaneeth,

you can call this method:


themeDisplay.getURLMyAccount();


( Note: import proper class and object for ThemeDisplay)

HTH


-Gnaniyar Zubair
Vaneet Sharma, modificado hace 15 años.

RE: Redirection to a user profile page.

Regular Member Mensajes: 195 Fecha de incorporación: 25/07/08 Mensajes recientes
Thanks Zubair !

I made the changes in Start.jsp and it worked .
Now i have to make the opened My Account page of other users non editable .
Any thoughts on that
Vaneet Sharma, modificado hace 15 años.

RE: Redirection to a user profile page.

Regular Member Mensajes: 195 Fecha de incorporación: 25/07/08 Mensajes recientes
Hi Zubair,

I am able to trap the logged in user MyAccount details using the themeDisplay.getURLMyAccount() .

But can we trap the My Account details of all the users who have posted in a blog ./ message thread.

Thanks
thumbnail
Sandro Rizzuto, modificado hace 11 años.

RE: Redirection to a user profile page.

New Member Mensajes: 2 Fecha de incorporación: 13/11/12 Mensajes recientes
Solved!

In view_entry_content.jsp add:

User userDisplay = UserLocalServiceUtil.getUserById(entry.getUserId()); (at line 25)

<a href="<%= userDisplay.getDisplayURL(themeDisplay) %>"><%= HtmlUtil.escape(PortalUtil.getUserName(entry.getUserId(), entry.getUserName())) %></a> (at line 192)

I hope it will be helpful!
Ashok BS, modificado hace 10 años.

RE: Redirection to a user profile page.

Junior Member Mensajes: 30 Fecha de incorporación: 26/08/13 Mensajes recientes
Hi,

Can anyone guide or help me with this? My scenario is , iam populating list of users in Employee search portlet (i.e. custom portlet) and displaying those records in the same portlet with fields such as: Employee ID, First Name, Last Name & location using liferay provided Search-container.

Now i want to give a hyperlink on Employee ID where, it has to navigate to the particular users "Manage Account URL" . I know we can use themeDisplay.getURLMyAccount() which will navigate to the logged in user's account. But i need to navigate to search listed users respective account URL when i click on the employee id? Please this is very much urgent. Please help.
thumbnail
The Meurwinn Concept, modificado hace 15 años.

RE: Redirection to a user profile page.

Expert Mensajes: 261 Fecha de incorporación: 10/04/06 Mensajes recientes
Sorry, it was not for this thread...
The Meurwinn Concept:
All you need is in "http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Customizing+the+default+page+after+login"