Max Posters Today [lite]

Max Posters Today [lite] 2.2

No permission to download
When you hover over a member it shows their total posts. Is this correct behavior?

TY!
 

Attachments

  • Screen shot 2014-08-09 at 12.21.06 PM.webp
    Screen shot 2014-08-09 at 12.21.06 PM.webp
    9.1 KB · Views: 52
When you hover over a member it shows their total posts. Is this correct behavior?

TY!

Hi there, would you mind sharing with us how you made your system look like that? Avatar and the top poster inside the bubble.
 
I must of done something wrong this didn't change a thing. Obviously my user did not make 7200 posts today.

Even left an ugly spot.
 

Attachments

  • Screen shot 2014-08-19 at 8.56.46 PM.webp
    Screen shot 2014-08-19 at 8.56.46 PM.webp
    9.7 KB · Views: 46
I must of done something wrong this didn't change a thing. Obviously my user did not make 7200 posts today.

Even left an ugly spot.
15.webp
Re-Upload files and re-install, please. This burble text corresponds to the previous version.

Salud2
 
How can I change the tooltip to read: Bob - Total posts today 10 for a total of 7118

not

Bob - Total posts today 10 from a total of 7118
 
How can I change the tooltip to read: Bob - Total posts today 10 for a total of 7118

not

Bob - Total posts today 10 from a total of 7118

ACP->Appareance->search for phrases ->xf_maxPostersToday_total->edit it.

Salud2
 
Thanks!

Two more quickie questions. See screenshot.

- Would like to change Max Posters Today to Top Posters Today
- Move Top Posters Today over more to the right.

Thanks.
 

Attachments

  • Screen shot 2014-08-20 at 1.04.05 PM.webp
    Screen shot 2014-08-20 at 1.04.05 PM.webp
    3.2 KB · Views: 37
@lms what time does the top posters of the day stats reset?
It doesn't seem like there is a cron for that and I think the timing is off because I want it to reset at midnight everyday.
 
@lms what time does the top posters of the day stats reset?
It doesn't seem like there is a cron for that and I think the timing is off because I want it to reset at midnight everyday.
This add-on allow to put into sidebar to max posters of a period.

In ACP -> Home -> Options ->
Limit cut-off for records (one week, one month, one day,...)
Get last 24 hours, not natural periods as a day. I look to see how I can implement it in a future update.
Would like to change Max Posters Today to Top Posters Today
Edit this phrase: xf_maxPostersToday_title
Yes, it is.
Move Top Posters Today over more to the right.
Search into XenFacil_MaxPosters.css template and look for the next code:
Code:
.sidebar #maxPostersToday.secondaryContent h3 {
Add a new line into the brackets {} with this content:
text-align:right;

Salud2
 
Last edited:
On one of my themes you can't see/read the post number in the circle.

How can I fix that?

Thanks.
 

Attachments

  • Screen shot 2014-08-23 at 11.20.44 AM.webp
    Screen shot 2014-08-23 at 11.20.44 AM.webp
    12.8 KB · Views: 30
On one of my themes you can't see/read the post number in the circle.

How can I fix that?

Thanks.
Look into XenFacil_MaxPosters.css template into that style. Search for
Rich (BB code):
.maxPostersNumber {
  background: none repeat scroll 0 0 @primaryLightest;
  border: 1px solid @primaryLighter;
  border-radius: 50px;
  box-sizing: border-box;
  color: @primaryDarker;
  color: @secondaryLightest;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 1px 3px 0;
}
Change
color: @primaryDarker;
for
color: @secondaryLightest;
Or put a light color as #ffffff;
color: #ffffff;

Salud2
 
Top Bottom