Re: Remove Forum Columns...
I do not think there is a setting that will turn off the display of these columns but you can use CSS to hide them. You would have to set a few selectors to get this done but it should not be that difficult.
In looking at a site that I have done the "Total Thread" heading has he class "fthreadcount". So what you would need to do is set the CSS for that using the visibility or the display property. The difference is visibility with still render the white space.
.fthreadcount { visibility:hidden; } or .fthreadcount { display:none; }