Here is my solution although I don treally like core hack:
in your qa-theme.php,
search for " function q_item_stats($q_item) // add view count to question list"
then add the foloowing lines:
if ($q_item['raw']['views']>10000){ //AA $q_item['views_raw'] and $q_item['raw']['views'] will //also have the same value //but somehow $q_item['views']['data'] gets displayed $q_item['views']['data'] = round($q_item['raw']['views']/1000).'k'; }
if ($q_item['raw']['views']>10000){ //AA $q_item['views_raw'] and $q_item['raw']['views'] will
//also have the same value
//but somehow $q_item['views']['data'] gets displayed $q_item['views']['data'] = round($q_item['raw']['views']/1000).'k'; }
I don't know of any plugin, but it would be quite easy to do this yourself in a custom theme. Wherever the number of views is output you can change the format Something along the lines of
if ($views > 10000) { $views = round($views/10000).'k'; }
Change $views for whatever variable has the views.
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.