works great on vb 2.3.0 also, I have used it since this came out, on each version since then, I followed my instructions I posted above, and it worked for 2.2.9 and 2.3.0
PHP Code:
showthread.php
find the second line of:
code:
--------------------------------------------------------------------------------
attachment.attachmentid,attachment.filename,attachment.visible AS attachmentvisible,attachment.counter
--------------------------------------------------------------------------------
add this after it on the same line
code:
--------------------------------------------------------------------------------
,style.title as styletitle
--------------------------------------------------------------------------------
find the second line of:
code:
--------------------------------------------------------------------------------
LEFT JOIN user ON user.userid=post.userid
--------------------------------------------------------------------------------
add this after it on the next line
code:
--------------------------------------------------------------------------------
LEFT JOIN style on (user.styleid = style.styleid)
--------------------------------------------------------------------------------
open up the postbit template and place this where you like
code:
--------------------------------------------------------------------------------
<smallfont>Theme: <a href='stylestats.php?s=$session[sessionhash]'>$post[styletitle]</a><br>
--------------------------------------------------------------------------------