![]() |
Posts Per Day in POSTBIT
Can someone tell me how to add Posts Per Day in POSTBIT, just under "Posts" ? I need to know the code and exactly where to put it in POSTBIT. Thanks.
|
Have you done a search for a mod that does this?
|
Yes I did. At vBulletin.com too. All the suggestions found are for vBulletin 3 only. And indeed I was able to display the info when we were with vBulletin 3. But not with vBulletin 4.
|
Did you try to convert the mod to vb4 at all? It should only be a matter of changing the template and template rendering, I would think. (I'm also surprised it doesn't already exist because I thought I saw it.)
|
I'm not up with rendering stuff in vb4 properly but you can use (untested) this kind of query and use the hook postbit_complete in a plugin
PHP Code:
|
@ Simon - how about adding it to postbit_legacy?
|
It would be the same, you're simply using the variable $mpsts, like I said I don't know whether you can use that variable raw in vb4 or not (i'm sure Lynne will chip in :) (please!!)), also remember I haven't tested it, I just wrote it in notepad and plopped it in here :)
I should of also said you should use $mpsts = round($jd/$mpostdays['posts'];) (that shouldn't be a smiley it should be ; followed be )) instead of $mpsts = $jd/$mpostdays['posts']; |
Where do I put it in postbit_legacy ?
|
I hope you don't mind if I add a few suggestions: the post author's posts and joindate (joindateline) are already available, so you don't need a query. You could use the template hook postbit_userinfo_right_after_posts so that you don't need to edit the template. So maybe something like this (using postbit_display_complete):
Code:
if (($days = round((TIMENOW-$post['joindateline']) / 86400)) <= 0) There is a phrase that says "Posts Per Day" but it isn't loaded for the showthread page, so if you need phrases or would rather use one, you'd have to load the 'user' phrases, or just create a new phrase using the 'postbit' phrase type. |
Quote:
Quote:
|
O.K. I have never added a new plugin before, but I think I understand what I need to do, except for one thing : "Execution Order : Use this field to enter the order in which code at the same hook will be executed". I notice a 5 already displayed by default. Do I leave the 5 there or do I change it for another number ?
|
1 Attachment(s)
O.k. I tried with "5".
Here are screenshots without the plugin and with the plugin. So not only do we not see the Posts Per Day but we are also losing the thanks given via the Post Thank You hack. |
Great thanks kh99 and Simon.
And maupassant , just create the plugin and activate it, you will see it take effect right away. |
Quote:
Normally you would just leave the execution order at 5 as Cheech Dogg said, but in this case if you want the posts per day to come before the thanks, you could try a number lower than 5. |
I tried it with 1 through 5 and it displayed on all of them of course in different order.
Make sure the plugin is activated , by default the plugin is checked to not be active. --------------- Added [DATE]1373702023[/DATE] at [TIME]1373702023[/TIME] --------------- kh99 can I ask you here how I would display the total amount of new threads created every 24 hours in the forum stats? I can start a new thread for that but it's in the stats family like this question and the OP might benefit from this stat display too. Thank you ahead of time. |
1 Attachment(s)
Oh, this is so weird. I tried it again kh99, and now it works, but the calculation of the PPD is way wrong. See here my own stats. My real PPD average is 32.84 and it says 0.03 in POSTBIT.
|
I'd like to try Simon LLoyd's plugin, but could someone please re-upload it with the correction he suggested (because I don't understand what he says I have to correct). Thanks to all, BTW.
|
Quote:
|
53,004 posts in both pictures.
|
My apologies :)
here's mine with the round incorporated PHP Code:
|
I probably didn't do this right. What I did is put your code in a new plugin using postbit_display_complete as hook location. And nothing new appears (no Posts Per Day).
Quote:
|
I get the same, didn't notice it yesterday but on some the Post Per Day = 0 and for some it reads out fine...
|
did you add $mpsts to your template? if I get time later on (got a lot of decking to build) i'll test it myself.
|
I have to add $mpsts in POSTBIT ? Where exactly ?
|
Wherever you want the value to show!, perhaps find where Posts: is already being displayed and add it under there, don't forget to add a phrase (or some text) for Posts per day and the html to have it on a new line..etc
|
Quote:
Code:
$template_hook['postbit_userinfo_right_after_posts'] .= "<dt>Posts Per Day</dt><dd>$post[posts] $days $ppd</dd>"; Then see what the three numbers are. Is it possible that the number is so small it's rounding to 0? |
1 Attachment(s)
What I get with your correction. The PPD is fine, but now it adds some odd numbers underneath (1615 0.03).
Quote:
|
1 Attachment(s)
In this other profile, still with kh99's correction, the errors are different. The nb for Posts Per Day is wrong (it displays again the nb of posts instead). The real PPD here is 0.24 (displayed just below).
|
Quote:
|
Quote:
|
As Kevins mod shows the last 3 digits 0.03 would be $ppd or posts per day.
|
Quote:
Posts Per Day : 9,624 4896 0 It is working because 9,624 / 4896 is the total post per day i am getting.....but it wont display it on the postbit_legacy... Any thoughts? --------------- Added [DATE]1373886774[/DATE] at [TIME]1373886774[/TIME] --------------- I changed it to the following: Code:
if (($days = round((TIMENOW-$post['joindateline']) / 86400)) <= 0) Posts Per Day : 0.0018 instead of the 1.97 ...... --------------- Added [DATE]1373888531[/DATE] at [TIME]1373888531[/TIME] --------------- So I have been told that because my total post count is 9,625, this plugin's code is interpreting the "," as an integer? So it has to be converted to a float so that it rounds of the number correctly since it has the "," in the number? --------------- Added [DATE]1373925272[/DATE] at [TIME]1373925272[/TIME] --------------- Any update on this you guys? |
Sorry for the delay in getting back to this. I searched for it because someone else asked about the number being formatted with commas, and that is in fact why it's not working. But while looking in to that issue I found that posts per day is already calculated by the vb code, so you shouldn't need a plugin at all, you should just be able to add {vb:raw post.postsperday} to your template.
|
Good one!, i guess when i looked at it in the memberinfo template i thought it wouldn't be available in other templates but in vb3 using $post[postsperday] gave the correct value!
|
Quote:
Still didn't work, it shows just the "Posts Per Day:" but not the stats ... --------------- Added [DATE]1375581510[/DATE] at [TIME]1375581510[/TIME] --------------- So I tried the following in postbit_legacy: Code:
<div class="pbit"><div>Posts Per Day: {vb:raw prepared.postsperday}</div></div> Code:
<div class="pbit"><div>Posts Per Day: {vb:raw posts.postsperday}</div></div> |
Sorry, there was a typo. I think it should be {vb:raw post.postsperday}
|
Quote:
Awesome! You are the Man man ! Perfect, correct Posts Per Day results ! I used the following: Code:
<dt>Posts Per Day</dt><dd>{vb:raw post.postsperday}</dd> Hey! lol...it shows the stats for some and not for others....any ideas? lol....but it's working correctly...maybe a usergroup's permission? --------------- Added [DATE]1375584454[/DATE] at [TIME]1375584454[/TIME] --------------- Disregard kh99...I had it wrapped around a condition lol....*facepalm*....lol...sorry Bro...but thank you so much , once again you have been great help! |
I added
PHP Code:
PHP Code:
|
If you're not seeing "Posts Per Day" then either it's the wrong template or the wrong style. If you have your info across the top of the post (like this site) then you should edit postbit instead of postbit_legacy. Also make sure you're editing the same style you're using to view the forum.
|
Quote:
--------------- Added [DATE]1376182069[/DATE] at [TIME]1376182069[/TIME] --------------- Let me know if I should start another thread for this, but I would like also to see this info displayed in each member's profile in the Admin Control Panel. Can it be done by adding the same code in the right template, and if so, what is the template I have to edit ? Also, but I know I'm pushing my luck here, would it be possible to add this as a field in Search For Users - Advanced Search in the ACP : "Posts Per Day less than 0.15" ? |
All times are GMT. The time now is 02:19 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|