The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Live Topic Details »» | |||||||||||||||||||||||||||||
. . . . . . . . Brought to you by scriptasy.com Live Demo: Live Topic 1.07b Demo (you must be logged in, and the topic must be "live")Description: This product is different from anything you have seen before, it raises the bar for forums. It will make your forums much more interactive, and also reduce server load.Technical Details: If a thread has been posted in X seconds then its now Live, if other users are viewing the Live topic and are on the last page they will experience a clean ajax experience while talking to other members. Once the thread is older than X seconds its no longer Live and it will now act like a normal thread. Also if a user edits one of their posts that's inside of the thread, it will be updated too so there is no longer a reason to ever have to refresh.Found a bug? Want to request a feature? Live Topic - Project ManagerInstallation: This is take less than 3 minutes to install, takes longer to notice its amazing feature. (you need multiple people to be active in the same topic)Upgrade: [1.01b to 1.XXb] Uninstall the product, then reinstall it. Overwrite all old files with new files and you should be fine.Works With (FF2, FF3, IE6, IE7, IE8, SF2, SF3, CHROME): vBulletin [3.8.X]Versions: 1.01b Download Now
Screenshots
Show Your Support
|
Comments |
#1212
|
||||
|
||||
Disable your hooks: https://www.vbulletin.com/forum/show...ystem-globally
Then try uninstalling again. Make sure you delete any files you uploaded. |
#1213
|
|||
|
|||
Does this still work?
|
#1214
|
||||
|
||||
It works fine for me on 3.8.7
|
#1215
|
|||
|
|||
has anyone ever come up with a way to disable this for guests? i hate turning off access to my forums during big events. i was wondering about a possible conditional that would disable the javascript for a usergroup
|
#1216
|
||||
|
||||
Just change all the plugins to have a condition for whether the user is a guest or not.
|
#1217
|
|||
|
|||
Quote:
Live topic stopped working when I put this condition in the plugin <if condition="is_member_of($bbuserinfo, array(5,6,7))"> { $is_livetopic = true; $livetopichook = 'ajax_start'; include 'includes/livetopic_hooks.php'; } </if> any ideas? |
#1218
|
||||
|
||||
Quote:
It would be: Code:
global $vbulletin; if (is_member_of($vbulletin->userinfo, array(5,6,7)) { $is_livetopic = true; $livetopichook = 'ajax_start'; include 'includes/livetopic_hooks.php'; } |
Благодарность от: | ||
beekay |
#1219
|
|||
|
|||
installed and working great. can i assign threads which are only to be made live?? This is in case I dont want any random thread to be made live.
|
#1220
|
|||
|
|||
Quote:
I also tried using this, which I borrowed from a plugin for hiding links from guests but it didn't work either. Code:
if ((!$this->registry->userinfo[userid]) OR (is_member_of($this->registry->userinfo, 5, 2, 6, 7))) { $is_livetopic = true; $livetopichook = 'ajax_start'; include 'includes/livetopic_hooks.php'; } |
#1221
|
||||
|
||||
I didn't check whether the code is good or not, just that what you wrote the first time was definitely invalid.
This is what I use personally to disable for users with IE 9... (on the global_start hook) Code:
if (ieversion() < 9.0) { $is_livetopic = true; $livetopichook = 'template_edits'; include 'includes/livetopic_hooks.php'; } And it works for everyone else. If you want it only for mods and admins I would suggest: Code:
global $vbulletin; if (is_member_of($vbulletin->userinfo, 5, 6, 7)) { $is_livetopic = true; $livetopichook = 'template_edits'; include 'includes/livetopic_hooks.php'; } If it still breaks for other users then I don't know, check and make sure no other code was changed. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|