I'm trying to implement a paid support section on our forum, to replace our ticketing system.
This mod is running fine on my 3.6.5 installation. Posters that were having problems with the mod, could you explain your issues?
Also, after purchasing thread posts, the default is to redirect back to the forumhome. Here's how to redirect back to the newthread page on a purchase or the forum if not.
Style Manager->
Your Style->Edit Templates->ptpnt_buythread_form
Replace:
HTML Code:
<input type="hidden" name="return" value="$vboptions[bburl]/$vboptions[forumhome].php" />
<input type="hidden" name="cancel_return" value="$vboptions[bburl]/$vboptions[forumhome].php" />
with:
HTML Code:
<input type="hidden" name="return" value="$vboptions[bburl]/newthread.php?do=newthread&f=$foruminfo[forumid]" />
<input type="hidden" name="cancel_return" value="$vboptions[bburl]/forumdisplay.php?$session[sessionurl]f=$foruminfo[forumid]" />