• OzzModz is no longer taking registrations. All registrations are being redirected to Snog's Site
    All addons and support is available there now.

Send PM in Postbit

For any one is like me and don't have it with coding.
I have made many tests to figure the right code and place.

In template postbit_legacy find:
PHP:
<vb:if condition="$show['reportlink']"> <a class="report" href="{vb:raw post.reportlink}" rel="nofollow" title="{vb:rawphrase report_bad_post}"><!-- <img src="{vb:stylevar imgdir_button}/report-40b.png" alt="{vb:rawphrase report_bad_post}" /> --> </a>  
/vb:if>

Put under this code:
HTML:
<!-- ///Start PM button /// -->
<vb:if condition="$show['pmlink']">
<a href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow">
<img src="images/buttons/send_pm.png" alt="{vb:rawphrase send_pm}" />Send PM</a>
<span class="seperator"> </span></vb:if>
<!-- ///End PM button /// -->

And final don't forget to upload send_pm.png in folder /images/buttons
View attachment 1008 <-- right click and save as


This is how it will look

View attachment 1009

There is an other way with css but for me this is enough.
I did not test it in postbit template.
 
Back
Top