Quote:
Originally Posted by DemonJester
Quick question. I performed all of the template edits including the optional ones, and now everyone of my members has a DONOR button under the icons in their post. After looking at the template edits this makes sense as one of the edits puts it there.
Can I make a request for a possible future addition. Is there any way to add some kind of check at the postbit/postbit legacy and MemberInfo section and see if the user in fact has donated, and if so display the DONOR image. If they didnt donate, display a DONATE button. I am sure this probably wouldnt be too difficult since the DONORS are already stored in a table that can be queried to see if it matches the users id, problem is I am not a coder so I have no idea how to do it.
Of course if you add the new usergroup function you stated in a previous post that could also be used as a check.
Just a suggestion.
Thanks again for the great hack.
|
Actually, the donor button shouldn't show up in postbit unless the user has donated. It sounds like you missed part of the opening <if> statement.
Here is the code to show the "Donor" buttton for those that donated, and the "Donate" button for those who haven't donated.
In postbit or posbit legacy (edit the file you use for your forums, or both) find:
Code:
<if condition="$post['donor'] != '0'"><div><a href="$vboptions[bburl]/donate.php"><img src="$stylevar[imgdir_button]/donate_donor.gif" border="0"></a></div></if>
And replace it with:
Code:
<if condition="$post['donor'] != '0'"><div><a href="$vboptions[bburl]/donate.php"><img src="$stylevar[imgdir_button]/donate_donor.gif" border="0"></a></div><else /><div><a href="$vboptions[bburl]/donate.php"><img src="$stylevar[imgdir_button]/donate_button.gif" border="0"></a></div></if>
It's a very simple hack to cloudrunners existing code.