Problem in Staff Online Widget in the javascript Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    Problem in Staff Online Widget in the javascript

    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 9 May - 1:32

    Hello,
    I found an error in javascript of staff online widget can someone help me to solve it?

    Problem in Staff Online Widget in the javascript 22SUb3q
    JScript
    JScript
    Forumember


    Male Posts : 741
    Reputation : 175
    Language : PT-BR, EN
    Location : Brazil

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by JScript Sat 9 May - 1:44

    @Black-Shadow
    And where's the code? fufufu

    JS
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 9 May - 1:45

    Sorry @JScript forgot the code here it is:

    Code:

    div id="Staff_Online">
                                                                                                                                                                                 
    </div>
                <script type="text/javascript">
                    jQuery(document).ready(function () {
                        var widget = jQuery('#Staff_Online')[0];
                        staff_cache_time = 4*60*1000; // mm*ss*ms;
                
                        if (localStorage.staffOn && localStorage.staffEx > +new Date - staff_cache_time) {
                            jQuery(widget).html(localStorage.staffOn)
                        } else {
                            jQuery.get('/viewonline', function (data) {
                                var group = {
              
                                    ffnd: jQuery('.table span[style="color:#990012"]', data).parents('td'),
              
                                    adm: jQuery('.table span[style="color:#FF0000"]', data).parents('td'),
              
                                    gmod: jQuery('.table span[style="color:#800080"]', data).parents('td'),
            
                                    fmod: jQuery('.table span[style="color:#7057FA"]', data).parents('td'),
        
                                    tsup: jQuery('.table span[style="color:#0020C2"]', data).parents('td'),                
                                    smod: jQuery('.table span[style="color:#008000"]', data).parents('td'),
                                    };                 jQuery(widget).append(group.ffnd).append(group.adm).append(group.gmod).append(group.fmod).append(group.tsup).append(group.smod);
                                jQuery('#Staff_Online a[href^="/u"]').each(function () {
                                    var prof = jQuery(this).attr('href');
                                    jQuery('<a href="' + prof + '" class="avatarimage"></a>').insertBefore(this);
                                    jQuery('<div class="Info"></div>').insertAfter(this);
                                    jQuery(this).prev().load(prof + ' #profile-advanced-right .main-content img:eq(0)');
              
                                    jQuery(this).next().load(prof + ' #field_id5 dd div:eq(0)')
                                    })
                            });
                            jQuery(window).on('load', function () {
                                localStorage.staffOn = document.getElementById(widget).innerHTML;
                                localStorage.staffEx = +new Date;
                            })
                        }
                    });
                    </script> <style>
                  #Staff_Online .avatarimage > img {
                    float: left;
                    margin-right: 4px!important;
                    width: 40px;
                    height: 40px;
                    border: 1px solid #0000CD;
                    border-radius: 4px;
                    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
                }
                #Staff_Online .Info {
                    color: darkgray;
                    margin: 1px 45px;
                    padding: 10px 0px 10px;
                    width: 190px;
                    display: table-cell;
                }
                #Staff_Online {
                height: auto;
                }
                #Staff_Online td {
                display: block;
                }
                </style>
    JScript
    JScript
    Forumember


    Male Posts : 741
    Reputation : 175
    Language : PT-BR, EN
    Location : Brazil

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by JScript Sat 9 May - 1:54

    @Black-Shadow
    This code was full of mistakes, I do not know how he still worked something!

    Try this:
    Code:

    <div id="Staff_Online"></div>

    <script type="text/javascript">
       jQuery(document).ready(function() {
          var oWidget = jQuery('#Staff_Online');
          staff_cache_time = 4 * 60 * 1000; // mm*ss*ms;

          if (localStorage.staffOn && localStorage.staffEx > +new Date - staff_cache_time) {
             oWidget.html(localStorage.staffOn)
          } else {
             jQuery.get('/viewonline', function(data) {
                var group = {
                   ffnd: jQuery('.table span[style="color:#990012"]', data).parents('td'),

                   adm: jQuery('.table span[style="color:#FF0000"]', data).parents('td'),

                   gmod: jQuery('.table span[style="color:#800080"]', data).parents('td'),

                   fmod: jQuery('.table span[style="color:#7057FA"]', data).parents('td'),

                   tsup: jQuery('.table span[style="color:#0020C2"]', data).parents('td'),
                   smod: jQuery('.table span[style="color:#008000"]', data).parents('td'),
                };
                oWidget.append(group.ffnd).append(group.adm).append(group.gmod).append(group.fmod).append(group.tsup).append(group.smod);
                oWidget.find('a[href^="/u"]').each(function() {
                   var prof = jQuery(this).attr('href');
                   jQuery('<a href="' + prof + '" class="avatarimage"></a>').insertBefore(this);
                   jQuery('<div class="Info"></div>').insertAfter(this);
                   jQuery(this).prev().load(prof + ' #profile-advanced-right .main-content img:eq(0)');

                   jQuery(this).next().load(prof + ' #field_id5 dd div:eq(0)')
                })
             });
             jQuery(window).on('load', function() {
                localStorage.staffOn = document.getElementById('Staff_Online').innerHTML;
                localStorage.staffEx = +new Date;
             })
          }
       });
    </script>
    <style>
       #Staff_Online .avatarimage > img {
          float: left;
          margin-right: 4px!important;
          width: 40px;
          height: 40px;
          border: 1px solid #0000CD;
          border-radius: 4px;
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
       }
       
       #Staff_Online .Info {
          color: darkgray;
          margin: 1px 45px;
          padding: 10px 0px 10px;
          width: 190px;
          display: table-cell;
       }
       
       #Staff_Online {
          height: auto;
       }
       
       #Staff_Online td {
          display: block;
       }
    </style>

    Note: I only tested it on my head, so it might not work!

    So long,

    JS
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 9 May - 1:58

    @JScript I change the staff online widget but it is not working correctly and the problem in chatbox remaining
    JScript
    JScript
    Forumember


    Male Posts : 741
    Reputation : 175
    Language : PT-BR, EN
    Location : Brazil

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by JScript Sat 9 May - 2:05

    @Black-Shadow
    The widget error disappeared, but I'm finding that I your forum chat code is working intermittently, I ask you to just leave it so I can check out what's triggering it ok?

    JS
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 9 May - 2:11

    Ok @JScript,
    I am leaving the widget with your new code as it haven't errors now to locate where is the error in chatbox.
    JScript
    JScript
    Forumember


    Male Posts : 741
    Reputation : 175
    Language : PT-BR, EN
    Location : Brazil

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by JScript Sat 9 May - 2:26

    @Black-Shadow
    Your forum is in need of optimization, I found that you still use a JS to add the avatar in the column "Last posts"!
    You no longer need this code, remove it ( linux-team.forumgreek.com/26750.js ) and follow the steps in the image below:
    Problem in Staff Online Widget in the javascript VSsqmzd

    Note: Your forum has many codes with placement in all the pages, check for any that are no longer needed!

    When you are finished, we can continue with the chat code,

    JS
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 9 May - 2:29

    @JScript I have remove the js about the avatar on last column of board index and now the avatar is not displaying. I followed the steps in your post.
    JScript
    JScript
    Forumember


    Male Posts : 741
    Reputation : 175
    Language : PT-BR, EN
    Location : Brazil

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by JScript Sat 9 May - 2:37

    @Black-Shadow
    The reason is that your template has been modified!
    Read: https://help.forumotion.com/t133214-new-option-show-avatars-in-the-column-last-posts

    Check the changes you will need to make in your templates.

    JS
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 9 May - 2:53

    @JScript ok i fixed the avatars but the widget is freezing and is not displaying the status update field.
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sun 10 May - 13:19

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Tue 12 May - 2:38

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Wed 13 May - 21:56

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Fri 15 May - 0:07

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 16 May - 1:21

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sun 17 May - 11:23

    bump


    Last edited by Black-Shadow on Thu 28 May - 23:38; edited 1 time in total
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Mon 18 May - 22:51

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Wed 20 May - 0:53

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Thu 21 May - 12:59

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Fri 22 May - 22:51

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sun 24 May - 3:14

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Mon 25 May - 15:08

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Tue 26 May - 16:18

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Wed 27 May - 19:56

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Thu 28 May - 23:38

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sat 30 May - 1:58

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Sun 31 May - 13:23

    Bump
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by Van-Helsing Mon 1 Jun - 14:10

    Hello @JScript,
    Today something is going wrong and staff online widget appearing crashed. I cleared my browser's cache and cookies and the problem is still remaining. I tested it in Mozilla Firefox, Google Chrome and Safari but the appearance seems crashed.
    JScript
    JScript
    Forumember


    Male Posts : 741
    Reputation : 175
    Language : PT-BR, EN
    Location : Brazil

    Solved Re: Problem in Staff Online Widget in the javascript

    Post by JScript Mon 1 Jun - 15:45

    @Black-Shadow
    Ok, I'll do some code changes or I will make another, just ask him to wait a bit.

    JS