Update - I still do not know the original cause of the double comma, but I found in the CSS template->vbulletin.css
PHP Code:
.commalist li:after {
content:",";
}
that the Currently Active Users calls from. So, I'm sure that there's a better way to do this but this is what I did:
In FORUMHOME find:
PHP Code:
<ol class="commalist" id="wgo_onlineusers_list">
Replace with:
PHP Code:
<ol class="commalist2" id="wgo_onlineusers_list">
In vbulletin.css
Find:
PHP Code:
.commalist li {
display:inline;
}
.commalist li:after {
content:",";
}
.commalist li:last-child:after {
content:"";
}
ul.username li a,
ol.username li a,
a.username {}
.commalist li a.username {
display:inline;
}
Add below:
PHP Code:
.commalist2 li {
display:inline;
}
.commalist2 li:after {
content:"";
}
.commalist2 li:last-child:after {
content:"";
}
ul.username li a,
ol.username li a,
a.username {}
.commalist2 li a.username {
display:inline;
}