Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted December 23, 20204 yr Hello, 🙂 My index page is showing the number of posts with a comma, for instance : 103,2k How can I make it use a "normal" number ? (103200 instead of 103,2k) Thank you. 🙂
December 23, 20204 yr @SecondSight You'll need to edit either: forums > front > index > forumRow This is the table view one. OR forums > front > index >forumGridItem This is for grid view. And change this: {number="$count" format="short"} to just: {number="$count" format="long"} Â
December 23, 20204 yr Author Thank you. 🙂 It worked for me. For the grid view, I made the modification in : lang="posts_number" pluralize="$count" format="long" Â
December 23, 20204 yr Author You also have to do it in forums > front > forums > topicRow for the number of messages and views : <span class='ipsDataItem_stats_number'>{number="$v" format="long"}</span> <span class='ipsDataItem_stats_type'>{lang="{$k}" pluralize="$v" format="long"}</span> Â
April 2, 20223 yr Hello, I need the same for "Statistics forum", for total topics and posts. I don't find where to change it.