the hack works with 2.2.5 no problem
Open showthread.php and find this (it shows up two times):
Code:
attachment.attachmentid,attachment.filename,attachment.visible AS attachmentvisible,attachment.counter
replace with this (in both places):
Code:
attachment.attachmentid,attachment.filename,attachment.visible AS attachmentvisible,attachment.counter,style.title as styletitle
find this in showthread.php (it shows up two times):
Code:
LEFT JOIN user ON user.userid=post.userid
add this after it on the next line (in both places):
Code:
LEFT JOIN style on (user.styleid = style.styleid)
open up the postbit template and place this where you like:
Code:
Style: <a href='index.php?styleid=$post[styleid]'>$post[styletitle]</a>
link it to anywhere
done