>>
Site Map
>>
Forums
>>
Modules 6x
Forum module - topics in forum:
Modules 6x - Discussions regarding PHP-Nuke Modules.
[Resolved] Your Info and Profile
There seems to be 2 different "profile" modules. One is in your account/your info and the other is profile in the forum module. Mine are similar but different. For example, my your info has a spot to pick an avatar but its not the same as when you are in the forum's profile avatar. I noticed this nuke's your info is the same as the forum profile. How can I make mine like this one?
Thanks
I can put up my url if this is not clear.
All it is a modifiction for the link in your account to point to forum profile instead, here's how.
http://phpnuke-uk.net/modules.php?name=Forums&file=viewtopic&t=1980
Very sweet!
Thanks alot! Just what I was looking for.
No prob's your welcome

I was just about to make the changes suggested in the post but then realized that everything works fine and if you only use the profile from the forums section you lose out on a few features such as being able to subscribe and unsubscribe to newsletters *a important on in my case
Have both then
Just add
| Code: : |
$menuimg = menuimg("info.gif");
echo "<td width=\"10%\"><font class=\"content\">"
."<center><a href=\"modules.php?name=Forums&file=profile&mode=editprofile\"><img src=\"$menuimg\" border=\"0\" alt=\"Forum Profile\" title=\"Forum Profile\"></a><br>"
."<a href=\"modules.php?name=Forums&file=profile&mode=editprofile\">Forum Profile</a>"
."</center></font></td>";
|
after
| Code: : |
$menuimg = menuimg("info.gif");
echo "<font class=\"content\">"
."<center><a href=\"modules.php?name=Your_Account&op=edituser\"><img src=\"$menuimg\" border=\"0\" alt=\""._CHANGEYOURINFO."\" title=\""._CHANGEYOURINFO."\"></a><br>"
."<a href=\"modules.php?name=Your_Account&op=edituser\">"._CHANGEYOURINFO."</a>"
."</center></font></td>";
|