Quote:
Originally Posted by leftwich86
I must be an idiot cause I have no idea what you're referring to...
|
That's because you didn't read back far enough.... Its the single most talked about subject besides the bitfields..
Step 1. Log into your Admin Control Panel.
Step 2. Scroll down the left hand nav menu until you get to the Plugins & Products Area.... expand it.. click on Plugin Manager. This will then bring up all the plugins that you have installed within vbulletin...
Step 3. Scroll down the list and look for the Product : vBookie area... this area will contain all the plugins associated with vbookie....
Step 4. Find the specific plugin that needs to be modified (vBookie: Redirect to vbookie.php when posting new Event) and then click on [edit]. This will open the plugin so that you can replace the block of code with the block that Paul had in his post (which is located below)
Replace the current plugin code with this:
PHP Code:
if ($newpost['postvbookieevent'])
{
$vbulletin->url = 'vbookie.php?' . $vbulletin->session->vars['sessionurl'] . "t=$newpost[threadid]&vbookieeventoptions=$newpost[vbookieeventoptions]&do=newevent";
eval(print_standard_redirect('redirect_postthanks_moderate', true, false));
}