Fórumok

Redirection to a user profile page.

Vaneet Sharma, módosítva 15 év-val korábban

Redirection to a user profile page.

Regular Member Bejegyzések: 195 Csatlakozás dátuma: 2008.07.25. Legújabb bejegyzések
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, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Expert Bejegyzések: 451 Csatlakozás dátuma: 2006.06.21. Legújabb bejegyzések
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, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Regular Member Bejegyzések: 195 Csatlakozás dátuma: 2008.07.25. Legújabb bejegyzések
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, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Regular Member Bejegyzések: 195 Csatlakozás dátuma: 2008.07.25. Legújabb bejegyzések
Any help !
thumbnail
The Meurwinn Concept, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Expert Bejegyzések: 261 Csatlakozás dátuma: 2006.04.10. Legújabb bejegyzések
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, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Regular Member Bejegyzések: 195 Csatlakozás dátuma: 2008.07.25. Legújabb bejegyzések
Any example or code snippet for this.
thumbnail
The Meurwinn Concept, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Expert Bejegyzések: 261 Csatlakozás dátuma: 2006.04.10. Legújabb bejegyzések
All you need is in "http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Customizing+the+default+page+after+login"
Vaneet Sharma, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Regular Member Bejegyzések: 195 Csatlakozás dátuma: 2008.07.25. Legújabb bejegyzések
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, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Liferay Master Bejegyzések: 722 Csatlakozás dátuma: 2007.12.19. Legújabb bejegyzések
Hi Vaneeth,

you can call this method:


themeDisplay.getURLMyAccount();


( Note: import proper class and object for ThemeDisplay)

HTH


-Gnaniyar Zubair
Vaneet Sharma, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Regular Member Bejegyzések: 195 Csatlakozás dátuma: 2008.07.25. Legújabb bejegyzések
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, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Regular Member Bejegyzések: 195 Csatlakozás dátuma: 2008.07.25. Legújabb bejegyzések
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, módosítva 11 év-val korábban

RE: Redirection to a user profile page.

New Member Bejegyzések: 2 Csatlakozás dátuma: 2012.11.13. Legújabb bejegyzések
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, módosítva 10 év-val korábban

RE: Redirection to a user profile page.

Junior Member Bejegyzések: 30 Csatlakozás dátuma: 2013.08.26. Legújabb bejegyzések
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, módosítva 15 év-val korábban

RE: Redirection to a user profile page.

Expert Bejegyzések: 261 Csatlakozás dátuma: 2006.04.10. Legújabb bejegyzések
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"