MyBB Community Forums

Full Version: Options at the end of posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to remove some of them? Some options at the end of post are:
-email
-pm
-all posts - search all posts of that user
- +/-
-quote
-warn
-report
,etc.. I want to remove some of them. How to do that?
ACP >> Templates & styles >> Templates >> Your Theme >> postbit template

Find

<div class="author_buttons float_left">

The buttons are after that. These are the ones on the left.

The buttons that are on the right are further down too, after:

<div class="author_buttons float_right">
(2012-08-24, 12:38 AM)Andre R. Wrote: [ -> ]ACP >> Templates & styles >> Templates >> Your Theme >> postbit template

Find

<div class="author_buttons float_left">

The buttons are after that. These are the ones on the left.

The buttons that are on the right are further down too, after:

<div class="author_buttons float_right">

I found only "postbit" at "Post Bit Templates" but when I open "postbit" I can't find that part of code you gived to me.

ohh.. But I found this:
Quote:<td><div class="dane">
<ul>
<li>{$post['button_email']}</li>
<li>{$post['button_pm']}</li>
<li>{$post['button_www']}</li>
<li>{$post['button_find']}</li>
<li>{$post['button_rep']}</li>
</ul>
</div></td>
<td>
<div class="ikony">
<ul>
<li>{$post['button_warn']}</li>
<li>{$post['button_report']}</li>
<li>{$post['button_multiquote']}</li>
<li>{$post['button_quote']}</li>
<li>{$post['button_quickdelete']}</li>
<li>{$post['button_edit']}</li>
<li>{$post['button_reply_pm']}{$post['button_replyall_pm']}</li>

I should just delete part of the code, right? For example if I don't need "www" button I will delete just "<li>{$post['button_www']}</li>", right? There don't going to be any bugs if I delete it on that way?
Yeh, thats how i would do it.
(2012-08-24, 01:07 AM)Andre R. Wrote: [ -> ]Yeh, thats how i would do it.

Okay. Can anyone else confirm me that there don't going to be any problems if I just remove it on that way? Smile Thanks.
I don't see why there would be, you are just removing an item from the postbit.

Also, if anything goes wrong, you can revert to the original template.