MyBB Community Forums

Full Version: New Thread button on all Threads pages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On my phpBB on every thread page there was both a button link to reply and a button link to post a new thread in THAT forum section.. hum it must have been something I MOD'd because the stock phpBB is not showing this feature.

For instance:
http://community.mybb.com/thread-112598-page-2.html
I'd like a NEW THREAD button placed somewhere on the line:
Quote:Thread Rating: **** [NEW REPLY] [NEW THREAD]

Is this something difficult? I have scoured the forums here and the plugins and cant find anything suitable..

thanks



admin panel --> templates --> your theme's templates --> show thread templates --> showthread

find code similar to below at the top
<div class="float_right">
{$newreply}
</div>
{$ratethread}

change to :
{$ratethread}
<div class="float_right">
{$newreply}
{$newthread}
</div>


find code similar to below at bottom AND add {$newthread} after {$newreply} ; save the template
<div style="padding-top: 4px;" class="float_right">
{$newreply}
</div>
owwww.. thats great.. I was going to try that but wasn't sure.. PURR-fect thanks so much!