MyBB Community Forums

Full Version: Which Template set be edited for threads?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to edit threads. so that I can add my own customizations after the the post (and before the inline thread options e.g edit, forward, report etc) of every member in thread.
If you have sufficient permissions, you should be able to edit other users' posts.
If I'm understanding what you want properly, then you'll want to edit this template:

Post Bit Templates - postbit

I guess you could do it after {$post['signature']}

Hope this helped.
Edit: not seen above response Smile
___________________________

it is the postbit templates - however your customization will be applicable for each & every post ..
Here the screen shot explains all,
[Image: 208cvwo.jpg]
Found and done thankx
Find this in the postbit after signature:
<td align="left" ><span class="smalltext">{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}</span></td>

It's a few lines after the closing table after signature (probably a table):
	
{$post['signature']}
			<div style="text-align: right; vertical-align: bottom;" id="post_meta_{$post['pid']}">
				<div id="edited_by_{$post['pid']}">{$post['editedmsg']}</div>
				{$post['iplogged']}
			</div>
		</td></tr>
	</table>

Add your content before:
</span></td>

Yours may be slightly different but this should enable you to find it.
Just add whatever content you want at the bottom of the postbit template.
Thank u all