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
Comment #1
binford2k commentedProbably 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');
Comment #2
nancydruChristian, I think this is a reasonable request. I will look into it.
Comment #3
lomz commentedThank you, realname seems to be the answer to many of my issues to drupal, should be a part of core if you ask me.
Comment #4
nancydruGo to http://drupal.org/project/issues/drupal and tell them that.
Comment #5
nancydruThis has been committed on both branches. It will be available in the -dev version around Midnight GMT.
Comment #6
nancydru