Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted February 21Feb 21 Hi,We like to see where we are for the next milestone. The current display is not very revealing.Is there a way to see the whole number?From the image below, are we close to 1.8m? This will be fun for us when we get close to 2m.Thanks
February 21Feb 21 Community Expert From a user perspective, there are no means really as this was changed in version 4 to use rounded numbers.From an admin perspective, you can view the statistics in ACP -> Statistics -> Forums -> Topics or Posts.
February 21Feb 21 Author Thanks, I'd need to do this regularly though.Is this something that could be changed with a custom app?
February 21Feb 21 Community Expert Solution A custom app could come out with a widget that doesn't use round numbers, yes.
February 25Feb 25 Community Expert You could create a custom block : ACP => Pages => BlocksChose the Forum Statistics Block and then customize the template<h3 class='ipsWidget__header'>{lang="block_forumStatistics"}</h3> <div class="ipsWidget__content"> <ul class='ipsList ipsList--stats ipsList--stacked ipsList--border ipsList--fill'> <li> <strong class='ipsList__label'>{lang="total_topics"}</strong> <span class='ipsList__value'>{number="$stats['total_topics']" }</span> </li> <li> <strong class='ipsList__label'>{lang="total_posts"}</strong> <span class='ipsList__value'>{number="$stats['total_posts']" }</span> </li> </ul> </div>My only change was the removal of "format="short"" Easy Peasy, isn't it:)