I know that this is not within the original scope of this module but it is more or less in the same alley so I will be posting it.

Would it be possible to implement a feature that changes the link to the userprofile for registered users to a link to the users homepage collected from a field in the userprofile?
Maybe with to fields, one for the URL and one for the name of the site.
The link looking like this: %display-name-by-realname.

Comments

binford2k’s picture

Probably a better solution would be to use cck computed field. Here's an example to get you started. It links to a user's contact page:

computed code:
$node_field[0]['value'] = $node->uid;

display format:
$display = l(t('Send email'), 'user/' . $node_field_item['value'] . '/contact');

nancydru’s picture

Assigned: Unassigned » nancydru

Christian, I think this is a reasonable request. I will look into it.

lomz’s picture

Thank you, realname seems to be the answer to many of my issues to drupal, should be a part of core if you ask me.

nancydru’s picture

Go to http://drupal.org/project/issues/drupal and tell them that.

nancydru’s picture

Status: Active » Fixed

This has been committed on both branches. It will be available in the -dev version around Midnight GMT.

nancydru’s picture

Status: Fixed » Closed (fixed)