Removing "Posts: I am a geek"
I found this line is Load.php
'posts' => $profile['posts'] > 10000 ? $txt['geek'] : comma_format($profile['posts']),
How can the conditional be removed altogether?
I tried this but the site did not load at all.
'posts' => $profile['posts'] : comma_format($profile['posts']),
Edit the number to something overly large like 999999, or remove the complete line not just the condition.
You need the line but more like this:
'posts' => comma_format($profile['posts']),
Thanks Arantor, that did the trick. Removing the whole line is not an option as it removes post count.
Quote from: Arantor on July 31, 2019, 02:56:37 AM
You need the line but more like this:
'posts' => comma_format($profile['posts']),
Thanks, I've played around with that line myself but apparently didn't really remember correctly how it's done.
Should've looked better before answering.