Quote:
Originally Posted by Paul M
What did you edit ?
|
Paul,
Sorry for the delay in responding.
I don't get much of a chance on the weekdays to do much, so I have to reply on weekends.
In response to my issue in post #242
You asked hat i edited to try and make the page open in a new window.
Well since i could not find the edits in the navbar, and you said it's added "on the fly" my old other step was to edit the xml you created.
Code:
<plugins>
<plugin active="1" executionorder="5">
<title>FlashChat Integration (1)</title>
<hookname>parse_templates</hookname>
<phpcode><![CDATA[$search_text = '$vbphrase[open_buddy_list]</a></td></tr>';
$add_text = '<tr><td class=\"vbmenu_option\"><a href=\"misc.php?do=flashchat\">$vbphrase[flashchat]</a></td></tr>';
$vbulletin->templatecache['navbar'] = str_replace($search_text,$search_text.$add_text,$vbulletin->templatecache['navbar']);]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>FlashChat Integration (2)</title>
<hookname>online_location_process</hookname>
<phpcode><![CDATA[if ($filename == 'getxml.php')
{
$userinfo['activity'] = 'flashchat';
}]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>FlashChat Integration (3)</title>
<hookname>online_location_unknown</hookname>
<phpcode><![CDATA[if ($userinfo['activity'] == 'flashchat')
{
$handled = true;
$userinfo['action'] = $vbphrase['in_flashchat'];
$userinfo['where'] = '<a href="misc.php?do=flashchat" TARGET="_blank">'.$vbulletin->options['bburl'].'/misc.php?do=flashchat</a>';
}]]></phpcode>
</plugin>
I tried the second green highlighted area, which helped the Who's online area, and I know the first green section is probably the Quick links area, but adding the target="_blank" to that gives me a syntax error on the main page.
thanks again for trying to help me out.