MyBB Community Forums

Full Version: Profile tab?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I add a profile button next to the PM, Email, etc buttons in the postbit?
AdminCP > Templates > Your theme's templates > Postbit Templates > Open following two templates;

postbit
postbit_classic

and add the following code just after {$post['button_rep']}

<a href="member.php?action=profile&amp;uid={$post['uid']}"><img src="IMAGE PATH OF PROFILE BUTTON" alt="Profile" title="See profile of {$post['username']}"></a>
(2012-07-26, 11:55 PM)Yaldaram Wrote: [ -> ]AdminCP > Templates > Your theme's templates > Postbit Templates > Open following two templates;

postbit
postbit_classic

and add the following code just after {$post['button_rep']}

<a href="member.php?action=profile&amp;uid={$post['uid']}"><img src="IMAGE PATH OF PROFILE BUTTON" alt="Profile" title="See profile of {$post['username']}"></a>

I modified it but thanks a ton. How are you not MyBB support staff?