A PM button on posts.

Status
Not open for further replies.

Shirotsume

Not The Goddamn @dmin
#1
Can we has a PM button on our posts so we don't have to go into people's profiles?

Here's how you would add it.

Copy this:
PHP:
<td align="left" ><span class="smalltext">{$post['button_pm']}</span></td>
And then go into templates/themes, templates, light default, postbit, and then open up postbit and postbit_classic.

In postbit, you'll see these lines:
PHP:
<div class="ikony">
<ul>
<li>{$post['button_warn']}</li>
<li>{$post['button_report']}</li>
Add this after <div class="ikony">, but before <ul>

For postbit_classic,

PHP:
<td><div class="ikony">
                                <ul>
<li>{$post['button_warn']}</li>
Same thing.

We'll see if that works, first, before I try anything drastic. They may not have removed the actual PM button.
 

Zephyrus

Searching for the six-fingered man.
#2
Shirotsume said:
Can we has a PM button on our posts so we don't have to go into people's profiles?

Here's how you would add it.

Copy this:
PHP:
<td align="left" ><span class="smalltext">{$post['button_pm']}</span></td>
And then go into templates/themes, templates, light default, postbit, and then open up postbit and postbit_classic.

In postbit, you'll see these lines:
PHP:
<div class="ikony">
<ul>
<li>{$post['button_warn']}</li>
<li>{$post['button_report']}</li>
Add this after <div class="ikony">, but before <ul>

For postbit_classic,

PHP:
<td><div class="ikony">
                                <ul>
<li>{$post['button_warn']}</li>
Same thing.

We'll see if that works, first, before I try anything drastic. They may not have removed the actual PM button.
This is awesome. Just saying.
 
Status
Not open for further replies.
Top