Quote:
Originally Posted by EvilSeph
Hi,
Thanks for this mod, it's pretty cool  ! Currently testing it out on a test forum hence why I haven't marked as installed yet.
Some things I've noticed are that the notice about this being a live topic etc. doesn't always show up (what are the conditions to make it appear?) and the little notification box that notifies you of new live topics (I believe) is broken:
JS shows:
vbphrase["livetopic_newresponses"] = "%1$template_hook[navbar_buttons_left] new responses (<a href=\'showthread.php?t=%2$template_hook[navbar_buttons_left]&goto=newpost\'>live topic</a>)";
and the text "%1$template_hook[navbar_buttons_left] new responses (<a href=\'showthread.php?t=%2$template_hook[navbar_buttons_left]&goto=newpost\'>live topic</a>)" appears to be what shows in the notification box that pops up (I'm not sure what causes it to pop up either...)
Thanks again for this plugin 
|
This sounds like the same problem I am having (
here is the post). If I look in the page source for a thread, I see this at the bottom:
Code:
vbphrase["livetopic_newresponses"] = "%15.00 new responses (<a href=\'showthread.php?t=%25.00&goto=newpost\'>live topic</a>)";
I know where the 5.00 comes from (it's a variable that I use under my username). The "1" (before 5.00) and "2" (before 5.00 in t=) are supposed to be used to replace part of the phrase in this line:
Code:
vbphrase['livetopic_newresponses'].replace(/%1/, new_posts).replace(/%2/, threadid);
in display_notification function: in the javascript. I'm not a javascript coder, so I really don't know how to debug that problem.