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 |
#1222
|
|||
|
|||
Quote:
Thank you, that code worked perfectly. :up: |
#1223
|
|||
|
|||
Does it not work with IE9?
If so would you kindly show us how one would incorporate the IF IE9 and usergroup options into one. I'd like to disable the mod for IE9 like you have BOP and also set it only for specific usergroups. Thanks so much |
#1224
|
||||
|
||||
For me it was not working for IE9, your mileage may vary.
To disable for IE9 just follow what I did in post #1220... Go to plugin manager, edit that plugin, and make the block of code look like what I posted. If you want to disable on IE9 AND limit it to certain usergroups: Code:
global $vbulletin if (ieversion() < 9.0 AND is_member_of($vbulletin->userinfo, 5, 6, 7)) { $is_livetopic = true; $livetopichook = 'template_edits'; include 'includes/livetopic_hooks.php'; } |
#1225
|
|||
|
|||
This code was working well for me but Live Topic eventually stopped working for me until I reinstalled it. It seemed to work fine during lower activity levels but once I had more members online it stop working.
Code:
global $vbulletin is_member_of($vbulletin->userinfo, 5, 6, 7)) { $is_livetopic = true; $livetopichook = 'template_edits'; include 'includes/livetopic_hooks.php'; } Thanks again to BOP5! |
#1226
|
||||
|
||||
Actually that code is missing the if condition, it probably never worked right...
If you want to specify groups the member is NOT a member of, simply put an ! in front of "is_member_of" example: Code:
if(!is_member_of($vbulletin->userinfo, 1, 2)) |
#1227
|
|||
|
|||
Are you please able to amend the code above with the if condition fixed I am not sure where it goes in php :\
|
#1228
|
||||
|
||||
just this:
Code:
global $vbulletin if (is_member_of($vbulletin->userinfo, 5, 6, 7)) { $is_livetopic = true; $livetopichook = 'template_edits'; include 'includes/livetopic_hooks.php'; } OR Code:
global $vbulletin if (!is_member_of($vbulletin->userinfo, 1, 2)) { $is_livetopic = true; $livetopichook = 'template_edits'; include 'includes/livetopic_hooks.php'; } |
Благодарность от: | ||
Wonksta |
#1229
|
|||
|
|||
Thank you very much
|
Благодарность от: | ||
BirdOPrey5 |
#1230
|
|||
|
|||
Quote:
I'm sorry but this code is just not working for me, I'm wondering if maybe theres a conflict somewhere else. I've tried both versions of the code and Live Topic stops working no matter what I do. I've tried adding it to both ajax_start and global_start. I've tried each plugin individually with the code as well as both of them having the code. |
#1231
|
|||
|
|||
Do you have mods the amend postbit? Like adsense ad insertations? It will break if you do, happened for me.
In the mean time DragonByte has his version of thiis available that was less buggy |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|