While there already exists a module to display the custom url for yourself, this one displays the custom url in the profile for the current user's profile you're viewing
find this section of code in components/com_comprofiler/comprofiler.html.php and just add that last line two lines
[code:1]if (true) {
echo "\n\t<div class=\"cbProfile\">";
// Display "head" tabs: (Menu + shortest connection path / Degree of relationship + Uname Profile Page)
if (isset($userViewTabs["cb_head"])) {
echo "<div class=\"cbPosHead\">";
echo $userViewTabs["cb_head"];
global $mosConfig_live_site;
echo "Profile Address: <a href=\" " . $mosConfig_live_site ."/" . $user->username . "\">" . $mosConfig_live_site . "/" . $user->username . "</a></div>";
[/code:1]
Post edited by: jeffason, at: 2006/07/31 02:07