inherit
179966
0
Mar 19, 2019 9:23:16 GMT -8
Welshling
Dohtml - v5 templates, advertising & more.
1,150
May 2012
welshling
|
Post by Welshling on Sept 6, 2013 5:47:03 GMT -8
roflmao, guide me on how to do these things or else i'm never gonna learn if you keep jumping in there BUT thanks all the same, cause I do have to go soon and now i just need to explain the edits in my themes >.> so -goes to see where you moved what too-
|
|
nukestorm
New Member
http://swfanimationsinc.proboards.com/index.cgi
Posts: 24
inherit
189740
0
Jul 8, 2014 7:16:54 GMT -8
nukestorm
http://swfanimationsinc.proboards.com/index.cgi
24
February 2013
nukestorm
|
Post by nukestorm on Oct 10, 2013 12:59:30 GMT -8
Can't view members that are online [Would like to see it come out as a pop up window thing]
|
|
Former Member
inherit
guest@proboards.com
131621
0
Nov 22, 2024 18:55:48 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Oct 10, 2013 13:18:32 GMT -8
Can you clarify your post, nukestorm? Are you reporting a glitch that you cannot see users online or are you posting a feature request, that being a pop-out window?
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Oct 10, 2013 14:18:24 GMT -8
nukestorm, I second what ₪» ⅀ ƪ Ƒ «₪ has asked/posted. On your forum in your signature, I see users online currently.
|
|
nukestorm
New Member
http://swfanimationsinc.proboards.com/index.cgi
Posts: 24
inherit
189740
0
Jul 8, 2014 7:16:54 GMT -8
nukestorm
http://swfanimationsinc.proboards.com/index.cgi
24
February 2013
nukestorm
|
Post by nukestorm on Oct 10, 2013 23:25:56 GMT -8
What i mean is the info center's currently online link just sends you to the top of the page.
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Oct 11, 2013 7:08:34 GMT -8
What i mean is the info center's currently online link just sends you to the top of the page. And you want it to be clickable so that once you do click it, it takes you to the online page?
|
|
nukestorm
New Member
http://swfanimationsinc.proboards.com/index.cgi
Posts: 24
inherit
189740
0
Jul 8, 2014 7:16:54 GMT -8
nukestorm
http://swfanimationsinc.proboards.com/index.cgi
24
February 2013
nukestorm
|
Post by nukestorm on Oct 11, 2013 7:12:23 GMT -8
What i mean is the info center's currently online link just sends you to the top of the page. And you want it to be clickable so that once you do click it, it takes you to the online page? Yeah, like bring up a window showing who's online or something.
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Oct 11, 2013 8:06:42 GMT -8
And you want it to be clickable so that once you do click it, it takes you to the online page? Yeah, like bring up a window showing who's online or something. I honestly don't see the point of that, because it shows already the list of who is online
|
|
nukestorm
New Member
http://swfanimationsinc.proboards.com/index.cgi
Posts: 24
inherit
189740
0
Jul 8, 2014 7:16:54 GMT -8
nukestorm
http://swfanimationsinc.proboards.com/index.cgi
24
February 2013
nukestorm
|
Post by nukestorm on Oct 11, 2013 11:13:39 GMT -8
Yeah, like bring up a window showing who's online or something. I honestly don't see the point of that, because it shows already the list of who is online Yeah sorry nevermind, I understand that now. The slimline is a great version to the normal one!
|
|
inherit
136262
0
Jun 24, 2013 21:59:18 GMT -8
nowdocking
1,088
January 2009
nowdocking
|
Post by nowdocking on Feb 1, 2014 18:11:29 GMT -8
Hi Stinky. This looks like exactly what I need. However I would like to remove everything on the far right -- all the member info.
Also, is there a way to let it show who has been online in the last 24 hours?
Thank you.
|
|
inherit
The Great Cinnamon Roll
191518
0
Oct 19, 2016 22:17:44 GMT -8
David Clark
Care for some tai chi with your chai tea?
17,602
March 2013
davidlinc1
|
Post by David Clark on Feb 6, 2014 10:40:05 GMT -8
Hey Stinky666, I made a quick modification to a small part of this template. This code was used to pull board/sub-board statistics: <b>Boards:</b> <script type="text/javascript"> document.write($(".board").length); </script> <br /> <b>Sub-Boards:</b> <script type="text/javascript"> document.write($(".sub-boards a").length); </script>
Which was causing issues in the theme editor sections due to the fact that document.write can blank out the page in certain circumstances where it executes after the page is done loading. It's recommended you don't use document.write to insert content. Instead I have a JQuery alternative, which accomplishes the same. <b>Boards: <span id="boardNum"></span></b> <script type="text/javascript"> var boardNum = $(".board-link").length; $("#boardNum").text(boardNum); </script> <br /> <b>Sub-Boards:</b> <span id="subBoardNum"></span> <script type="text/javascript"> var subBoardNum = $(".sub-boards a").length $("#subBoardNum").text(subBoardNum); </script>
|
|
inherit
133146
0
Nov 16, 2024 15:51:08 GMT -8
Alanna 🥀🖤
3,564
November 2008
alannab
|
Post by Alanna 🥀🖤 on Jun 17, 2014 17:17:06 GMT -8
Stinky666, just popping in to tell you that this section: {if $[total_staff_online] == 0} {if $[total_members_online] == 0} There are currently no members online. {/if} {elseif $[total_members_online] == 0} {if $[total_staff_online] == 0} There are currently no members online. {/if} {/if} breaks this section: {if $[total_online_not_shown]} , and <a class="$[view_active_members_link.class]" href="$[view_active_members_link.href]">$[total_online_not_shown] more...</a> {/if} for both online and online in the last 24 hours. Found out with trial and error. It just makes it say "0" instead of the actual amount of members not displayed. I haven't found out why and how to fix it other than just removing it.
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 22, 2024 18:55:48 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jul 30, 2015 7:14:06 GMT -8
hello june 2014 iv just added this to goldenbeatz.proboards.com/ and it looks lovely but i cant seem to get rid of the old info box, iv tryed disabling it in the forum settings but no joy. im going to add it to 2 other sites, so i want to make sure iv got it right. thank you whoever you are
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 22, 2024 18:55:48 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jul 30, 2015 7:17:10 GMT -8
ps ... i didnt use the codes above , i used the code in the op.
|
|
inherit
250354
0
Apr 20, 2022 10:16:53 GMT -8
sef1268
158
November 2017
sef1268
|
Post by sef1268 on Dec 18, 2020 16:51:39 GMT -8
Hi, Is there a latest/greatest code for the slimline info center? I'd like to replace the existing info center on my forum with this, but want to make sure I'm doing it correctly with any bugs worked out.
Best to you, Sef
|
|