I'm trying to get a link to redirect automatically to the "track" portion of a user's profile. Here's the code I've got so far. It generates a link in every forum message which reads 'View other posts from this user'. What I can't figure out is to get the link to point to the list of nodes which the tracker module creates for each user; instead it just takes me to the user's profile.
Also, how would I get this to appear on other user generated node types (i.e,. blog posts, etc)?
I've just installed Gallery module. Everything works correctly and I was able to setup Gallery image block. However, I can only see the Gallery image block when I logged in. Without logging in, block is not displayed. All other blocks are working fine except for this issue with the Gallery block. I've check my block configuration and configure it to display to everyone. Have been browsing around a while, but still haven't been able to find anything out. It's probably just some configuration settings that I miss. Any help is really appreciated.
AFAIU, the next thing is to make a release for this module. However, when I click "Add new release", I get only the HEAD as a CVS identifier suggestion while my module in the DRUPAL_4_7 branch in CVS.
A while back I wrote a module for Drupal to make it (very) easy to upload Flash content to a site. I've finally gotten round to upgrading it for Drupal 5. I've put a download on my site if you'd like to try it.
Hello,
I use hook_user in my module ("roles_by_profile") to modify account data when a user account gets updated:
function role_by_profile_user($op, &$edit, &$account, $category = NULL)
{
if ($op == 'update')
{
...
}
}
Within the ($op == 'update') condition I modify the $account object. However, these modifications are not saved to the database, although they should be – after all, $account is passed as a reference. What exactly is the problem here?