View Full Version : Miscellaneous Hacks - Private Message button in postbit footer
trilOByte
02-16-2010, 10:00 PM
This simple mod does what is says on the tin, it adds a PM button in the postbit footer using the vBulletin 4.0.2 css convention for mouseover buttons.
Note: This mod is NOT compatible with vBulletin 4.0.1 or earlier.
https://vborg.vbsupport.ru/external/2010/02/39.jpg
It could be argued that this is a little superfluous as there is a PM link in the dropdown under the members name, but that link requires a "click>>>scroll>>>click" to get to where you want to be. If your members use the PM system a lot, then they may appreciate a "one click" option.
There are...
1x addition to the postbit.css template
1x addition to the posbit (or postbit_legacy) template
2x images to upload
INSTRUCTIONS:
1x addition to he posbit.css template
Go to..
Styles & Templates>Stlye Manager>your skin>edit templates>CSS templates>postbit.css
----------------------------------------------------------------------
Find (search for "editpost"):
.postbitlegacy .postfoot .textcontrols a.editpost, .postbit .postfoot .textcontrols a.editpost, .eventbit .eventfoot .textcontrols a.editevent {
background: url({vb:stylevar imgdir_button}/edit_40b.png) no-repeat transparent {vb:stylevar left} ;
padding-{vb:stylevar left}: 20px;
}
.postbitlegacy .postfoot .textcontrols a.editpost:hover, .postbit .postfoot .textcontrols a.editpost:hover, .eventbit .eventfoot .textcontrols a.editevent:hover {
background: url({vb:stylevar imgdir_button}/edit_40b-hover.png) no-repeat transparent {vb:stylevar left};
padding-{vb:stylevar left}: 20px;
}
Under that, put:
.postbitlegacy .postfoot .textcontrols a.pminpostbit, .postbit .postfoot .textcontrols a.pminpostbit {
background: url({vb:stylevar imgdir_button}/pminpostbit_40b.png) no-repeat transparent {vb:stylevar left};
padding-{vb:stylevar left}: 20px;
}
.postbitlegacy .postfoot .textcontrols a.pminpostbit:hover, .postbit .postfoot .textcontrols a.pminpostbit:hover {
background: url({vb:stylevar imgdir_button}/pminpostbit_40b-hover.png) no-repeat transparent {vb:stylevar left};
padding-{vb:stylevar left}: 20px;
}
----------------------------------------------------------------------
Click "save".
1x addition to the posbit (or postbit_legacy) template:
Go to..
Styles & Templates>Stlye Manager>your skin>edit templates>postbit templates>postbit
----------------------------------------------------------------------
Find (search for "editpost"):
<vb:if condition="$post['editlink']">
<a class="editpost" href="{vb:raw post.editlink}" name="vB::QuickEdit::{vb:raw post.postid}"><img src="{vb:raw vboptions.cleargifurl}" id="editimg_{vb:raw post.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
<span class="seperator"> </span>
</vb:if>
Under that, put:
<!-- ////////start PM button in postbit////// -->
<vb:if condition="$show['pmlink']"><a class='pminpostbit' href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow"><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase send_pm}" />PM</a><span class="seperator"> </span></vb:if>
<!-- ////////end PM button in postbit////// -->
----------------------------------------------------------------------
Click "save".
2x images to upload:
FTP into your forum/images/buttons dir and upload these two attached images:
----------------------------------------------------------------------
pminpostbit_40b.png
pminpostbit_40b-hover.png
----------------------------------------------------------------------
That's it.
trilOByte
02-17-2010, 09:10 PM
Reserved.
RobbieZ
02-17-2010, 10:04 PM
Nice, This is to PM the PO their post as a quote ?
Jabong82
02-17-2010, 10:04 PM
Excellent mod works perfectly with 4.0.2. Thanks again!
trilOByte
02-17-2010, 10:10 PM
Nice, This is to PM the PO their post as a quote ?
No, unfortunately not, that is a much more complex mod and I dont think it can be done with just a simple template edit (I'd be happy to be corrected if someone knows different??). This is a regular old PM button to the poster, it's just a convenience thing really.
Sancipa
02-19-2010, 03:01 AM
thanks i love this one
Front Range 4x4
02-22-2010, 07:28 PM
Thanks for this as well as the To the Top button, these are very nice touches my members really appreciate. I've double-checked everything and can't figure out why the image isn't showing for the PM. Any tips on where to look? The other works fine. Thanks!
trilOByte
02-22-2010, 11:22 PM
What version of vBulletin are you using?
Front Range 4x4
02-23-2010, 01:51 AM
4.0.2
Front Range 4x4
02-23-2010, 12:08 PM
My apologies trilOByte, it works perfectly fine. Instead of double checking I need to triple check - operator error. :o
Installed - 5 stars!
trilOByte
02-23-2010, 01:37 PM
No worries. :)
zeroality
03-10-2010, 09:02 PM
Great mod. Thanks.
andreamarucci
03-11-2010, 09:03 AM
Great thanks!
Sparrow-Sean
05-14-2010, 01:57 AM
Did not work on 4.0.3!
Bounce
05-15-2010, 04:17 PM
Did not work on 4.0.3!
Worked perfectly on my 4.0.3.
Thanks trilOByte :up:
Alec W
05-21-2010, 08:02 PM
Thanks and for the To the Top. Our users really like these.
rizve69
05-28-2010, 06:18 AM
hello mate,
thanks for this nice hack but i have one problem after adding my reply with quote button coming under others button.please check it.
http://i48.tinypic.com/2l95n3l.gif
thanks for this awesome code.looking forward to you as i am new in vb4.
trilOByte
05-28-2010, 09:45 PM
One of two things, either you have a modified postbit template, or you have pasted the code into the wrong place - I think the latter.
Where I say "find in postbit" you need to find the whole block of code....
<vb:if condition="$post['editlink']">
<a class="editpost" href="{vb:raw post.editlink}" name="vB::QuickEdit::{vb:raw post.postid}"><img src="{vb:raw vboptions.cleargifurl}" id="editimg_{vb:raw post.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
<span class="seperator"> </span>
</vb:if>
<<<<---the new code goes here.
and paste the new bit, right after the "</vb:if>" on a new line.
You need to be very exact where you put the code. If you paste your postbit template here, I'll take a look at it.
Or.... you are using a fixed width postbit_legacy template that is too small for all the buttons and forces them to wrap onto a new line.
Fuhrmann
05-29-2010, 09:16 PM
Nice one, already made this here. Thanks.
Hippy
06-03-2010, 12:54 AM
what do I have to add so when you mouse over it will say send pm to the user
thanks
Hippy
06-03-2010, 01:21 AM
Figured it out
Feel free to add to your mod
I added this in postbit and / postbit_legacy code
To {vb:raw post.username}
from this
<vb:if condition="$show['pmlink']">
<a class='pminpostbit' href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow"><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase send_pm} To {vb:raw post.username}" />PM</a>
<span class="seperator"> </span>
to this
<vb:if condition="$show['pmlink']">
<a class='pminpostbit' href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow"><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase send_pm}" />PM</a>
<span class="seperator"> </span></vb:if>
gossone
06-04-2010, 12:41 PM
Did not work on 4.0.3!
Worked perfectly on my 4.0.3.
Thanks trilOByte
Hippy
06-04-2010, 10:17 PM
Does anyone know how This can be removed from private message
kabir
08-09-2010, 04:19 AM
Not Work to Version 4.0.5
COL NIL SATIS
09-01-2010, 05:54 PM
tagged
COL NIL SATIS
09-01-2010, 07:26 PM
Mate i added the go to top button ..that looks great ..but when i tried to add this one it throws the go to top one below ...any ideas...????
im certain i did the temp edits spot on too ....great mods by the way
COL NIL SATIS
09-01-2010, 07:29 PM
Figured it out
Feel free to add to your mod
I added this in postbit and / postbit_legacy code
To {vb:raw post.username}
from this
<vb:if condition="$show['pmlink']">
<a class='pminpostbit' href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow"><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase send_pm} To {vb:raw post.username}" />PM</a>
<span class="seperator"> </span>
to this
<vb:if condition="$show['pmlink']">
<a class='pminpostbit' href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow"><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase send_pm}" />PM</a>
<span class="seperator"> </span></vb:if>
does that add it in the right place bud?? :)
mine pushed th goto top button way out ...but will try your solution
Hippy
09-01-2010, 08:25 PM
worked well for me ..
I killed this mod because it was messing up private message
mishb68
09-29-2010, 01:54 AM
Couldn't make it work in 4.0.6
kingmotox
10-16-2010, 07:42 AM
any updates for 4.0.7
markwein
10-16-2010, 08:06 PM
Works great in my forum and I also have the "Top" button in my postbit_legacy as well...I'm running 4.0.7 at the moment and I just followed the instructions with no modifications.
OurCouponHome
10-18-2010, 12:42 PM
I added it but the image isn't showing just "pm"
EconomicVoice
10-18-2010, 07:02 PM
I had the problem of it just showing pm with no picture but saw that the codes were slightly different. I replaced the stated code on the css file with:
.postbitlegacy .postfoot .textcontrols a.pminpostbit, .postbit .postfoot .textcontrols a.pminpostbit, .eventbit .eventfoot .textcontrols a.editevent {
background: url({vb:stylevar imgdir_button}/pminpostbit_40b.png) no-repeat {vb:stylevar postbit_control_background} {vb:stylevar left} ;
padding: {vb:stylevar postbit_control_padding};
padding-{vb:stylevar left}: {vb:math {vb:stylevar postbit_control_padding}+20};
border: {vb:stylevar postbit_control_border};
}
.postbitlegacy .postfoot .textcontrols a.pminpostbit:hover, .postbit .postfoot .textcontrols a.pminpostbit:hover, .eventbit .eventfoot .textcontrols a.editevent:hover {
background: url({vb:stylevar imgdir_button}/pminpostbit_40b-hover.png) no-repeat {vb:stylevar postbit_control_hover_background} {vb:stylevar left};
padding: {vb:stylevar postbit_control_padding};
padding-{vb:stylevar left}: {vb:math {vb:stylevar postbit_control_padding}+20};
border: {vb:stylevar postbit_control_hover_border};
}
Worked for me.
excellent..Installed on 4.0.7
Special Pages
05-24-2011, 11:22 PM
This is great! Thanks sir!
phinphan
06-14-2011, 03:03 AM
I installed the mod and get no results at all. No change to the display. Any suggestions.
nacaruncr
06-18-2011, 01:46 AM
tagged + installed + 5 stars :D
working excellent in 4.1.3 :D thanks :D
LisaArnold
07-10-2011, 06:49 AM
Sorry, I can't get it working with v4.1.4 :(
Will try again if it gets updated. :)
Merenguista
07-10-2011, 10:42 AM
thanks
gbechtel
07-11-2011, 06:43 PM
Working in 4.1.4 no issues, thank you!
TheTrust
07-15-2011, 06:17 AM
it is perfect hack,
but it is not working for arabic forum
thank you
flbutterflyz
07-15-2011, 11:32 PM
The images aren't showing up for me, not even with EconomicVoice's suggestion.
Successfulsteps
07-18-2011, 04:15 AM
Can't get this to display in 4.1.4
LisaArnold
01-06-2012, 04:38 AM
Works on 4.1.5 pl1 :) Thanks.
GeorgeB85
01-18-2012, 01:40 AM
Using latest version and this is not working for me.
BlueCheri
01-18-2012, 03:36 AM
Installed, working fine.
The image is not showing up :(
Please guide me.
TombstoneWarrior
01-22-2012, 08:09 PM
These Code Replacements Dont Match Up I Can Not Get This Installed For Anything. Anyone Help With A Exact Full Code Replacement For Each Section Please. You Can Pm Me Them If You Need Too. Someone Help Please!!!!
TombstoneWarrior
03-09-2012, 10:18 PM
These Code Replacements Dont Match Up I Can Not Get This Installed For Anything. Anyone Help With A Exact Full Code Replacement For Each Section Please. You Can Pm Me Them If You Need Too. Someone Help Please!!!!All fixed with my coder BaussDesigns perfect work and made everything work out for me fine. Thanks again BaussDesigns
:up:
1320Nation
03-10-2012, 03:00 AM
Mod is not updated for current vb version. Not compatible with postbit.css and who knows what else.
CAG CheechDogg
08-20-2012, 11:02 AM
Great little addition to my forums! Thanks a lot trilOByte !!
qpurser
08-20-2012, 01:04 PM
Mod is not updated for current vb version. Not compatible with postbit.css and who knows what else.
I installed it on my test forum (4.2) and put the code into my postbit-legacy and works fine.
kylek
02-05-2013, 09:18 PM
Just installed on 4.2.0 P3 and it works fine.
stevieb
07-31-2013, 11:11 AM
works fine on 4.2.0 - thanks :)
whitewolf68
08-21-2013, 03:14 AM
The images are not showing in my forum for some reason. Any ideas??
thetechgenius
07-13-2014, 10:08 PM
Couldn't this be done by adding a Plugin? I added a plugin to add an "Add Friend" button to the same place in the postbit.
Edit:
I just found an easier way of doing this, without editing any templates, only the Additional.css, and Creating a new plugin.
Create a new plugin:
Product: vBulletin
Hook Location: postbit_display_complete
Title: send_pm_user (could be anything you want)
Execution Order: 5
Plugin PHP Code:
$postuserinfo = fetch_userinfo($post['userid'], 128);
{
$template_hook['postbit_controls'] .= '<span class="sendpm"><a href="private.php? ' . $vbulletin->session->vars['sessionurl'] . 'do=newpm&u=' . $post['userid'] . '">' . construct_phrase($vbphrase['send_pm'], $post['username']) . '<img class="pmimg2" alt="Send PM" src="images/site_icons/pm.png"></a><span class="seperator"></span></span>';
}
Change the code in RED to the image location of the Send PM Image that you downloaded from the first post.
Add this to Additional.css:
/* Add Send PM to Postbit - Begin */
.pmimg2{margin:-2px;}
.sendpm{position: absolute;right: 495px;}
/* Add Send PM to Postbit - End */
You may need to change the code in RED to align the button correctly. Lower Number = Right, Bigger Number = Left.
I have an "Add Friend" button in my postbit, so I had to align my "Send PM" before that, so mine will probably be different then yours. Just mess around with the code in RED to get the button exactly were you want it.
https://vborg.vbsupport.ru/external/2014/07/41.png
All Credit goes to the OP trilOByte (https://vborg.vbsupport.ru/member.php?u=918), I just figured out another way to implement his addon.
Note: You must know that if you add this mod this way, all usergroups will be able to see the button, including Guests. If you only want to allow specific usergroups, then you will have to edit the "postbit" or "postbit_legacy" template(s) and add the code manually. If anyone needs the code for the template version, let me know and I will post my code I use on my forum.
ozzy47
07-13-2014, 10:15 PM
Sure it could, I did it in a mod before.
AFF648
07-14-2014, 02:45 PM
Works great in 4.2.1 except the hover box won't appear. Here's what's in the postbit legacy:
<!-- ////////start PM button in postbit////// -->
<vb:if condition="$show['pmlink']"><a class='pminpostbit' href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow"><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase send_pm} To {vb:raw post.username}" />PM</a><span class="seperator"> </span></vb:if>
<!-- ////////end PM button in postbit////// -->
Any ideas what could be wrong?
Fields
07-15-2014, 04:59 PM
Great mod! :)
Works fine with vB 4.2.2.
I just have one question: the PM link is also displayed under a private message, how do I remove it there?
Fields
07-15-2014, 05:02 PM
Works great in 4.2.1 except the hover box won't appear. Here's what's in the postbit legacy:
<!-- ////////start PM button in postbit////// -->
<vb:if condition="$show['pmlink']"><a class='pminpostbit' href="private.php?{vb:raw session.sessionurl}do=newpm&u={vb:raw post.userid}" rel="nofollow"><img src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase send_pm} To {vb:raw post.username}" />PM</a><span class="seperator"> </span></vb:if>
<!-- ////////end PM button in postbit////// -->
Any ideas what could be wrong?
The hover is set in the postbit.css template, are you sure you added the code discribed in the instructions above?
These are those mods which would perfectly do in a xml. But it?s a 5 minute game to do this via TMS.
What I would like to suggest is, to make the pn editor coming up as a pop-up. May be as reduced editor. At least it's my feeling, that - when I see a PN button placed there - I expect a pop-up, so I don?t have to leave the page I?m looking at. So to speak: like a QuickPN ;)
Any body out there who could make this happen?
tbworld
08-01-2014, 06:23 PM
I must be missing something. I try to reduce the amount of private messaging on the board and promote public messaging. I guess I can see in a gamming community that there might be a reason to have more private messaging for personal gloating. I could use some enlightenment here on how this is being used to enhance your community. Thanks :)
Depends on your audience, I guess. I am running vBulletin in a military and a profession related community and there are quite a few things, where publicly posting sensitive content is not only inappropriate. On sites where the audience is more likely the fun guns I´ld expect the PNs are more like a chatter. On my sites PNs are necsessary and still a core function.
tbworld
08-01-2014, 07:02 PM
Depends on your audience, I guess. I am running vBulletin in a military and a profession related community and there are quite a few things, where publicly posting sensitive content is not only inappropriate. On sites where the audience is more likely the fun guns I?ld expect the PNs are more like a chatter. On my sites it?s necsessary and serious need.
I did not think of non-appropriate content. I knew I could be enlightened. Thanks :)
Professional, chatter I figured would be limited to special forums with permission or threads with special permission if you have this kind of modification set up. I could never see ultra sensitive information on a board.
I didn't think of inappropriate content. I knew I could be enlightened. Thanks :)
Professional, chatter I figured would be limited to special forums with permission. I could never see ultra sensitive information on a board.
Sensitive doesn?t mean confidential, tb.
Just imagine you have a board for a profesision and you want to talk with someone else about things going on in your company, you are not happy with. Fraud, mobbing, whatever you can think of. If you are posting that to a forum and you give away some informations, a person knowing you and the company could get an idea that it?s you - in that case you can bet your a** that the company will find your post sooner or later - and that?s the last thing you want to happen ;)
tbworld
08-01-2014, 07:36 PM
Thank you, I originally looked at this thread as being superfluous so appreciate your time for the education. I am a little less ignorant now :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.