MyBB Community Forums

Full Version: Get rid.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need help, how do I get rid of the buttons at the bottom of every post that says..

Email PM Home Find

How do I get rid of them?
Open up your postbit template.

Find and delete
{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}
Admin CP > Templates & Style > Templates > Expand "Default Templates" > Expand "Post Bit Templates" > Edit "Post Bit Template"

You should see this towards the bottom:
<div class="author_buttons float_left">{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}
</div>

Take out the ones you don't want.
I've tried deleteing the code and nothing happens?
(2008-08-04, 08:35 AM)OhLiam Wrote: [ -> ]I've tried deleteing the code and nothing happens?

Also beware MyBB 1.4 now has 2 postbit template ( hor. && ver. )
Templates: postbit && postbit_classic
Delete it in both.

If you can't edit your templates like 55% of the users.
http://community.mybboard.net/thread-345...#pid231967
(2008-08-04, 08:58 AM)LeX- Wrote: [ -> ]
(2008-08-04, 08:35 AM)OhLiam Wrote: [ -> ]I've tried deleteing the code and nothing happens?

Also beware MyBB 1.4 now has 2 postbit template ( hor. && ver. )
Templates: postbit && postbit_classic
Delete it in both.

If you can't edit your templates like 55% of the users.
http://community.mybboard.net/thread-345...#pid231967

Thanks Lex!, I was using classic so i had to edit that ;P.
Anyway since your on do you know why this is happening :-
http://community.mybboard.net/thread-34742.html
(2008-08-04, 09:06 AM)OhLiam Wrote: [ -> ]http://community.mybboard.net/thread-34742.html

http://community.mybboard.net/thread-347...#pid232775

UserCP - Your Profile - Edit Options - Thread View Options - Display users' avatars in their posts.
Is that checked ?
(2008-08-04, 09:47 AM)LeX- Wrote: [ -> ]
(2008-08-04, 09:06 AM)OhLiam Wrote: [ -> ]http://community.mybboard.net/thread-34742.html

http://community.mybboard.net/thread-347...#pid232775

UserCP - Your Profile - Edit Options - Thread View Options - Display users' avatars in their posts.
Is that checked ?

o, why did it un-select itself?, and is there anyway to select it for every users ? (new and existing)
Run this query;
UPDATE `mybb_users` SET `showavatars` = '1';

Change mybb_ to your prefix if needed.