Looks like you need to do the conditional in a plugin... I just tested this, seems to work:
Go to Admin CP -> Plugin Manager -> Add a New Plugin
Product: vBulletin
hook location: global_start
Title: AJAX Disable on MEMBERINFO
Execution Order: 5
PHP Code:
PHP Code:
if (THIS_SCRIPT == 'member')
$vbulletin->options['disable_ajax'] = 2;
Set ACTIVE to YES and SAVE.
Ajax should be disabled on your member.php page, which controls visitor messaging. :up: