Anonymous ID: 03bc7c Dec. 18, 2020, 9:56 a.m. No.12080700   🗄️.is 🔗kun   >>0744 >>0745

Here's the javascript for a replies counter beside the quick reply box. Add to Options User JS

 

/ Display a replies counter overlay in the top right corner /

$(function(){

$('head').append('<style>#thread_stats_posts_ovl { '+

'position:fixed;top:40px;right:25px;'+

'font:38px sans-serif;opacity:0.5;color:#9988ee;}</style>');

$('body').append('<div id="thread_stats_posts_ovl"/>');

function copyStats() { $('#thread_stats_posts_ovl').

text($('#thread_stats_posts').text());}

$(document).on('new_post',copyStats); copyStats();});

Anonymous ID: 03bc7c Dec. 18, 2020, 10 a.m. No.12080744   🗄️.is 🔗kun   >>0808

>>12080700

And in bold text

 

/ Display a replies counter overlay in the top right corner /

$(function(){

$('head').append('<style>#thread_stats_posts_ovl { '+

'position:fixed;top:40px;right:25px;'+

'font:38px sans-serif;color:#9988ee;}</style>');

$('body').append('<div id="thread_stats_posts_ovl"/>');

function copyStats() { $('#thread_stats_posts_ovl').

text($('#thread_stats_posts').text());}

$(document).on('new_post',copyStats); copyStats();});