Quote:
Originally Posted by tomdude9
go to the 'uttstore_standard_confirmation' template, and find <form action="ushop.php" method="post">...replace with:
Code:
<!--replace XXX with the donate function's ID number-->
<if condition="$_REQUEST[actionid] == 'XXX'">
<form action="private.php" name="private" method="post">
<input type="hidden" class="bginput" name="recipients" value="$_FIELDS[username]" />
<input type="hidden" class="bginput" name="title" value="$_FIELDS[points] POINTS RECIEVED" />
<input type="hidden" name="message" value="$_FIELDS[username],
I have just donated $_FIELDS[points] points to you.
Sincerely, $bbuserinfo[username]">
<!--feel free to change this message but preserve the spacing, line breaks won't parse-->
<input type="hidden" name="s" value="" />
<input type="hidden" name="do" value="insertpm" />
<input type="hidden" name="pmid" value="" />
<input type="hidden" name="forward" value="" />
<input type="hidden" name="receipt" value="0" />
</form></if>
<form action="ushop.php" method="post" onsubmit="document.private.submit()">
...repeat as needed for admin donate, steal, change other's title, etc...

|
I am using this for the donate, but would also like to repeat it and use it for a gift received, i changed the function id # on it and changed some of the text but it doesn't send a pm for the gift only for donate of cash, anyone know how to go about this.