MyBB Community Forums

Full Version: How to have the Rate user button below thread or post?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys, I want to have The Rate User Button found in the reputation page, i.e, this
[Image: 12ad33a0b9fc98e7adb40ec9598bf8f0.jpg]

in this following position,
At the bottom of each post of the poster?

[Image: 05058bb5e83b687c194b583227c59d3a.jpg]


How to edit the templates?
If you edit your theme's templates, and edit Post Bit Templates => postbit, and scroll down to the bottom. You'll see things like this:

{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quote']}

Just add an image tag in this like so:

<a href="reputation.php?uid={$post['uid']}"><img src="link_to_image" alt="" /></a>{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quote']}{

That will take a user to the post author's reputation page. If you want to create a popup box straight from the link to manage their reputation, change the hyperlink to:

<a href="javascript:MyBB.reputation({$post['uid']});">
Thanks alot.