I am curious whether I can modify the user reputation option so that it will display donation amounts?
I would like to display the amount donated by a particular member. Since I do not use the reputation system, I assumed that I might be able to modify it to show donation amounts.
For me, the number of donating members is not great so doing it manually at first is not a problem.
edit:
woot! Made some progress as a novice vB code modifier. Use at your own risk.
Thus far, I located this code in my vB 3.5.0 code:
Code:
<if condition="$show['reputation']"><div><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></if>
and changed it to:
Code:
<if condition="$show['reputation']">
<div><if condition="$show['reppower']">
<br>
<b>My site Points: $$post[reputation]</b> <font size=1>(<a href="http://www.mysite.com/donate.php">Donate</a>)</font>
<br>
</span><br></if></if>
Now if I can find a way for vB to track paid subscription amounts and automatically increase a user's reputation points by that amount, then we have an automated donation status system!
Any thoughts on how to make this work?
I am also looking for a way to reset the reputation points already in the system.