Like SystemiConnectFri 15 Oct 2021, 04:50
Auto Save MessagesLGforumFri 26 Feb 2021, 13:31
New tutorial questionTheCrowMon 15 Feb 2021, 08:12
Support iOS Emojis (and other platforms)LGforumSun 14 Feb 2021, 01:25
LGforum (2806)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
Mr.Easybb (1587)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
Bloodbath (745)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
Rukiafan (533)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
Dom (513)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
puppycheese (446)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
pedro (330)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
Neymar (301)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
Hitsu (281)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 
Flora (275)
Online List - Widget - Page 4 Vote_lcapOnline List - Widget - Page 4 Voting_barOnline List - Widget - Page 4 Vote_rcap 


Online List - Widget

puppycheesepuppycheese
Status : No status yet...

Posts : 446
Join date : 2013-02-12
Age : 30
Location : New Jersey
Mon 06 May 2013, 01:00
lg can you make a punbb version of this? I would really like to have this.
avatartommycoo
Status : No status yet...

Posts : 205
Join date : 2011-12-03
Age : 28
Location : indonesia
Mon 06 May 2013, 02:02
puppycheese wrote:[quotelink="http://www.avacweb.com/t114p75-online-list-widget#11874"]lg can you make a punbb version of this? I would really like to have this.

see my post thats work for punbb
puppycheesepuppycheese
Status : No status yet...

Posts : 446
Join date : 2013-02-12
Age : 30
Location : New Jersey
Mon 06 May 2013, 03:36
I will try it.
avatarGumyBear
Status : No status yet...

Posts : 33
Join date : 2012-08-23
Sun 28 Jul 2013, 13:37
how am i going to hide the who is online widget? and how can i change the position of image from right to left?

this is my forum > www.alliancemu.forums.cl
forum version : punbb
BoksshaBokssha
Status : No status yet...

Posts : 2
Join date : 2013-11-01
Sat 02 Nov 2013, 12:30

Hello...
Can we make something like this for bb2?

I was trying this on bb3,and its not working... It always shows that I m offline...

Online List - Widget - Page 4 621

This is what I used

Code:
<style>.staffname{display:block}</style><div id="onlineStaff">
<span class="staffname">Admin</span>
</div>

<script type="text/javascript">
 jQuery(function() {
          var x = jQuery('.module', document.getElementById('right'))[0].innerHTML;
          var y = jQuery('.staffname', document.getElementById('onlineStaff'));
          for (var i=0, l = y.length; i<l; i++) {
            if (x.indexOf(y[i].innerHTML) > 0) {
             
      y[i].innerHTML+=' <img src="http://hitskin.com/themes/13/76/80/i_folder_new.gif">';
    } else { y[i].innerHTML+='<img src="http://hitskin.com/themes/13/76/80/i_folder.gif">'; }
          }
        });
</script>
Have I done something wrong?
avatarromanzo
Status : No status yet...

Posts : 62
Join date : 2013-04-24
Wed 06 Nov 2013, 03:58
Bokssha wrote:[quotelink="http://www.avacweb.com/t114p75-online-list-widget#16854"]
Spoiler:
For bb3 did you follow what the instruction properly, LG said that you also need to put the widget provided by forumotion Who's Online widget.
avatarSchiggysboard
Status : No status yet...

Posts : 145
Join date : 2012-01-08
Sun 26 Apr 2015, 16:05
The code below is actually in action and it works fine. The problem is that the staff online list only works, if it will be put below the normal online list (and on the fourth place). So I tried to edit the code below with changing [1] to the new place where the staff online list should stay (3), but nothing works.
Anyone an idea?

Code:
[panda=js]<script type="text/javascript">
//<![CDATA[
jQuery(function() {
var x=jQuery('#right .module')[1];
var y=jQuery('#onlineStaff .staffname').get();
x.style.display="none";

for (i=0;i<y.length;i++) {
 if (x.innerHTML.indexOf(y[i].innerHTML)>0) {
  y[i].innerHTML+=" - Online";
 } else { y[i].innerHTML+=" - Offline"; }
}
});
var x=jQuery('.column:last .module')[1];
    var y=jQuery('#onlineStaff .staffname').get();
    x.style.display="none";
    for (i=0;i<y.length;i++) {
    if (x.innerHTML.indexOf(y[i].innerHTML)>0) {
      y[i].innerHTML+=' <img src="'+'http://2img.net/i/fa/Online.png'+'">';
    } else { y[i].innerHTML+='<img src="'+'http://2img.net/i/fa/Offline.png'+'">'; }
    }
//]]>
</script>
</div>
BloodbathBloodbath
Status : No status yet...

Posts : 745
Join date : 2013-05-31
Age : 28
Sun 26 Apr 2015, 18:54
Schiggysboard wrote:[quotelink="http://www.avacweb.com/t114p75-online-list-widget#23061"]The code below is actually in action and it works fine. The problem is that the staff online list only works, if it will be put below the normal online list (and on the fourth place). So I tried to edit the code below with changing [1] to the new place where the staff online list should stay (3), but nothing works.
Anyone an idea?

Code:
[panda=js]<script type="text/javascript">
//<![CDATA[
jQuery(function() {
var x=jQuery('#right .module')[1];
var y=jQuery('#onlineStaff .staffname').get();
x.style.display="none";

for (i=0;i<y.length;i++) {
 if (x.innerHTML.indexOf(y[i].innerHTML)>0) {
  y[i].innerHTML+=" - Online";
 } else { y[i].innerHTML+=" - Offline"; }
}
});
var x=jQuery('.column:last .module')[1];
    var y=jQuery('#onlineStaff .staffname').get();
    x.style.display="none";
    for (i=0;i<y.length;i++) {
    if (x.innerHTML.indexOf(y[i].innerHTML)>0) {
      y[i].innerHTML+=' <img src="'+'http://2img.net/i/fa/Online.png'+'">';
    } else { y[i].innerHTML+='<img src="'+'http://2img.net/i/fa/Offline.png'+'">'; }
    }
//]]>
</script>
</div>

All I would need for this is the URL of your board, then I'm sure I can fix this for you.
avatarSchiggysboard
Status : No status yet...

Posts : 145
Join date : 2012-01-08
Sun 26 Apr 2015, 19:09
http://schiggysboard.com/portal

Thank you Smile
BloodbathBloodbath
Status : No status yet...

Posts : 745
Join date : 2013-05-31
Age : 28
Sun 26 Apr 2015, 19:38
Schiggysboard wrote:[quotelink="http://www.avacweb.com/t114p75-online-list-widget#23064"]http://schiggysboard.com/portal

Thank you Smile

It appears your script has an error in it.

As it looks like your DOM structure has severely changed since the script was installed, did you change templates or forum version?

You can PM me the details in German if you don't know any further in English.
avatarGuest
Sun 26 Apr 2015, 19:53
Bloodbath wrote:[quotelink="http://www.avacweb.com/t114p75-online-list-widget#23066"]
Schiggysboard wrote:[quotelink="http://www.avacweb.com/t114p75-online-list-widget#23064"]http://schiggysboard.com/portal

Thank you Smile

It appears your script has an error in it.

As it looks like your DOM structure has severely changed since the script was installed, did you change templates or forum version?

You can PM me the details in German if you don't know any further in English.

Nice looking board you've got. I like the theme and colors. I scrolled down a bit on the index page and then I saw the YT vids you or someone else posted. I've got a suggestion to make on that (you do use phpBB3 don't u?):

Code:
[panda=css]]/*--- RESIZE AND CENTER EMBEDDED (YT) VIDEOS --------------------*/
.post .postbody .content.clearfix div embed {display:block !important;margin:0 auto !important;width:800px !important;height:450px !important;}

It will center and resize all the yt vids you've got on your website automatically and instantly for you. If you don't like the format, just change the px ranges. Smile


I've got that bit installed on my forum to straighten up the mess people sometimes make by adding vids in different formats
Sponsored content

 • Previous Topic • Next Topic