Author |
Thread: Tech help Yabb (Read 6556 times) |
|
Cary
MV Feature
I love Midnight Voices!
Posts: 92
|
|
Tech help Yabb
« : 15.08.06 at 11:36 » |
Quote
|
I'm just setting up a forum for work using Yabb (v 2.1). Got it up and working pretty much now. But - how do you/can you turn off the "users online" at the bottom of the home page? And while I'm here ..... can you change the layout of the message write screens? (this one I'm on now). This looks a lot neater than mine but I'm not sure if that's my set up or just because it's Yabb v2.1 Thanks
|
|
https://peteatkin.com/forum?board=tech&action=display&num=1155638216&start=0#0 |
. _/\ /\_
.
.Cary
.a a
. Like Mary @ ..With a..C..for cat
|
|
|
S J Birkill
MV Administrator
just a sensible reserve
Posts: 883
|
|
Re: Tech help Yabb
« Reply #1: 15.08.06 at 12:06 » |
Quote
|
Hi Cary Most of the cosmetic and operational changes I've made to adapt YaBB 1.3 to my own preferences have been done at Perl code level (tough for a non-computer scientist like me!), plus I've added a few 'mods' developed by other users. You can change pretty much anything you like, but unless it's a built-in option or a standard mod it'll involve learning the syntax of Perl and being prepared to edit more than one module of source code. I expect YaBB 2 to have been a major re-write, so it would be dangerous I think to extrapolate any specifics from YaBB 1.3. I suggest you consult the various on-line forums which exist to answer questions just like yours, e.g.: http://www.yabbforum.com/community/ http://www.theadminzone.com/forums/showthread.php?t=14719 http://www.boardmod.org/ Steve
|
|
https://peteatkin.com/forum?board=tech&action=display&num=1155638216&start=1#1 |
Stephen J Birkill
|
|
|
Cary
MV Feature
I love Midnight Voices!
Posts: 92
|
|
Re: Tech help Yabb
« Reply #2: 15.08.06 at 12:19 » |
Quote
|
Thanks Steve - do you know if it is possible to turn it off (the 'Users online' that is) in v1.3? If it is I should be able to find how to do it in v2.1 If not I'll stop looking for now. Perl!! I haven't even got to grips with HTML and I never made it past getting a bouncing ball on the C64 - I gave up on programming after that triumph!!
|
|
https://peteatkin.com/forum?board=tech&action=display&num=1155638216&start=2#2 |
. _/\ /\_
.
.Cary
.a a
. Like Mary @ ..With a..C..for cat
|
|
|
S J Birkill
MV Administrator
just a sensible reserve
Posts: 883
|
|
Re: Tech help Yabb
« Reply #3: 15.08.06 at 12:32 » |
Quote
|
Doesn't look like it's an option under "Forum preferences and settings". What I'd do (strictly in my version of 1.3!!!) is delete (or comment out) the HTML table row (with embedded Perl code) : Code: <tr> <td class="windowbg" bgcolor="$color{'windowbg'}" width="20" valign="middle" align="center"><img src="$imagesdir/online.gif" border="0" alt=""></td> <td class="windowbg2" bgcolor="$color{'windowbg2'}"><font size=1> <table width="98%" cellpadding="3" align="center"> <tr> <td valign="top" align="left"><font size="1">~; if ($guests == 1) { $yymain .=qq~1 Guest, ~; } else { $yymain .=qq~$guests Guests, ~; } if ($numusers == 1) { $yymain .=qq~1 Member~; } else { $yymain .=qq~$numusers Members~; } if ($numusers > 0) { $yymain .=qq~ :~; } $yymain .=qq~ $users </font></td> </tr> </table> </font></td> </tr> |
| ...in module /Sources/BoardIndex.pl. But you really didn't want to know that. SJB
|
|
https://peteatkin.com/forum?board=tech&action=display&num=1155638216&start=3#3 |
Stephen J Birkill
|
|
|
Cary
MV Feature
I love Midnight Voices!
Posts: 92
|
|
Re: Tech help Yabb
« Reply #4: 15.08.06 at 13:17 » |
Quote
|
You were right! I didn't want to know that And couldn't find those lines in my code so I'll have to see if I can find something similar - which could take some time. Thanks for your help Steve
|
|
https://peteatkin.com/forum?board=tech&action=display&num=1155638216&start=4#4 |
. _/\ /\_
.
.Cary
.a a
. Like Mary @ ..With a..C..for cat
|
|
|
|