Reverend if you still want to get rid of that 'No Posts in the Last 30 days' you can take this code:
PHP Code:
// +++++++ Quick Register on Restricting Access [ Start ] +++++++
if($QRenabled) {
if($bbuserinfo[userid]==0) {
eval("\$quickregister = \"".gettemplate('register_quick')."\";");
}
}
// +++++++ Quick Register on Restricting Access[ End ] +++++++
And replace it with:
PHP Code:
// +++++++ Quick Register on Restricting Access [ Start ] +++++++
if($QRenabled) {
if($bbuserinfo[userid]==0) {
eval("\$forumdisplay[threadslist] = \"".gettemplate('register_quick')."\";");
}
}
// +++++++ Quick Register on Restricting Access[ End ] +++++++
I just didn't include that if you wanted to use it on other locations instead of the show_nopermission
g-force2k2