Regarding disallowing ajax for quickreply for guests - it requires a code modification:
Quote:
Originally Posted by Psionic Vision
In order to disable ajax for guests, you'll have to further modify code.
So open up showthread.php, and find the following line:
PHP Code:
// set quick reply initial id
Add above it:
PHP Code:
if (!$vbulletin->userinfo['userid'])
{
$show['allow_ajax_qr'] = false;
}
That should do it.
|