Daily Statistics

Daily Statistics 2.2.0

No permission to download

Xon

Well-known member
Xon submitted a new resource:

Daily Statistics - Extended Statistics for your forum

This add-on will give some basic stats in the ACP/front-page
  • Post Stats
  • Thread Stats
  • User Stats
  • Resource Stats
View attachment 200157

You can also include the basic stats into the Forum Home statistics block:
View attachment 200158

Choose which stats to display via options in the ACP/Front-page:
View attachment 200159



Contributing features or bug fixes
Please create a Github...

Read more about this resource...
 
"Most members online today" would be cool. "Most members online ever" would also be really useful but maybe doesn't fit in this addon.
 
@Xon Show daily statistics in forum statistics widget option are not working. Does not show any info in forum statistics widget. Only admin CP show working.
 
Please try the following;
  1. Check that displaying is enabled for the front-end under options.
  2. Ensure users have the "View Additional Forum Stats" permission.
  3. Check template modifications for this add-on and see if it is applying.
 
I edited a phrase to add some css styling, but it translated in literal text instead of CSS.

Code:
<span style="color: #061306">New Threads Today</span>
 
I edited a phrase to add some css styling, but it translated in literal text instead of CSS.

Code:
<span style="color: #061306">New Threads Today</span>
You shouldn't really be adding styling via a phrase anyway.. ;)

Better to achieve this by editing the template, or creating a template modification.
 
You shouldn't really be adding styling via a phrase anyway.. ;)

Better to achieve this by editing the template, or creating a template modification.

Thanks. Can you give me an example of what it should look like in a new template? Never done that before.
 
Thanks. Can you give me an example of what it should look like in a new template? Never done that before.
I'm not using this add-on myself (yet), but looking at the code something like this should work..

In template svDailyStatistics_widget_forum_statistics search for:
Code:
<dt>{{ $label }}</dt>
Replace with:
Code:
<dt><xf:if is="$label == {{ phrase('svDailyStatistics_new_threads_today') }}"><span style="color: #061306">{{ $label }}</span></dt><xf:else /><dt>{{ $label }}</dt></xf:if>


Please note: This is untested..
 
Top Bottom