Custom Org Profile button under users post.
-
- Joined: Thu Oct 20, 2005 6:20 am
Custom Org Profile button under users post.
Hey there, just wondering if you could tell me, or atleast point me in the right direction, of how to mod your phpbb board so that it has the custom button that takes you to the person's org profile? I'm trying to do something similar but with phpbb and coppermine, both are bridged but I cannot find a mod or tutorial that explains how to create the custom button that will go to each users gallery.
- Flint the Dwarf
- Joined: Wed Jan 16, 2002 6:58 pm
- Location: Ashland, WI
Wouldn't this place be better suited to answer your question?
Kusoyaro: We don't need a leader. We need to SHUT UP. Make what you want to make, don't make you what you don't want to make. If neither of those applies to you, then you need to SHUT UP MORE.
-
- Joined: Thu Oct 20, 2005 6:20 am
- Phade
- Site Admin
- Joined: Fri Oct 20, 2000 10:49 pm
- Location: Little cabin in the woods...
Hey,
We just modified the code ourselves. In viewtopic.php, we added this line 960:
Then assigned it to the value to the variable around line 1235:
'PROFILE_IMG_ORG' => $profile_img_org,
Then we displayed it in the template viewtopic_body.tpl around line 47:
{postrow.PROFILE_IMG_ORG}
That's it. No biggie. I hope this helps.
Phade.
We just modified the code ourselves. In viewtopic.php, we added this line 960:
Code: Select all
$profile_img_org = "<a href=\"/members/members_myprofile.php?user_id=$poster_id\"><img src=\"" . $images['icon_profile_org'] . '" alt="' . $lang['Read_profile_org'] . '" title="' . $lang['Read_profile_org'] . '" border="0" /></a>';
'PROFILE_IMG_ORG' => $profile_img_org,
Then we displayed it in the template viewtopic_body.tpl around line 47:
{postrow.PROFILE_IMG_ORG}
That's it. No biggie. I hope this helps.
Phade.