PDA

View Full Version : Change to postbit in pm_showpm


Jman423
05-30-2011, 09:52 PM
My forum default is postbit legacy, and I am trying to make the pm_showpm template use postbit instead, without affecting the rest of the site.

I've been searching for some time now, and I've only found 3.x related questions about this.

Any guidance would be appreciated.

Thank you

Jman423
06-26-2011, 08:03 PM
Still looking for some assistance on this...

Thanks

BirdOPrey5
06-27-2011, 02:04 PM
Go to plugin manager

Add a new plugin

product: vbulletin
hook: global_bootstrap_init_start
execution order: 5
title: postbit changer for PMs

php code:
if (THIS_SCRIPT == 'private')
$vbulletin->options['legacypostbit'] = 0;

Set active to YES and save.

Jman423
06-27-2011, 10:04 PM
That worked perfectly.

Thank you very much for your time!