inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Nov 18, 2012 11:17:49 GMT -8
It would appear that the problem was due to multiple skins. I'll edit my template post to reflect that now. =]
|
|
inherit
154088
0
Jan 6, 2014 7:13:23 GMT -8
Liz
499
May 2010
frenchliving
|
Post by Liz on Nov 18, 2012 11:22:13 GMT -8
Thank you so much Paul - the problem was that I hadn't placed the code in each skin's Home template
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Nov 18, 2012 11:23:12 GMT -8
Thinking about it, only your default skin (the only one that guests will see) actually needs the code. =]
|
|
inherit
154088
0
Jan 6, 2014 7:13:23 GMT -8
Liz
499
May 2010
frenchliving
|
Post by Liz on Nov 18, 2012 12:23:22 GMT -8
Yes that's correct Paul. I had originally altered the code on a copy of my Default skin and as soon as I altered it on the Default skin, all was well
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Nov 19, 2012 13:47:44 GMT -8
To hide it from the members list drop down, go to the the members template.
Find this
$[view_menu]
and place this right below it.
<script> <!-- $('li.viewOnlineToday').hide(); // --> </script>
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Nov 19, 2012 13:51:43 GMT -8
To hide it from the members list drop down, go to the the members template. Find this $[view_menu] and place this right below it. <script> <!-- $('li.viewOnlineToday').hide(); // --> </script> Tested, works perfectly. =] As a question, was the 'li.viewOnlineToday' trial and error, or something you just knew how to find? There's another thread somewhere that could do with something similar, just wondered how you got to the end product. =]
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Nov 19, 2012 13:55:40 GMT -8
I just knew where to find it. Each drop down thing has a class. And I used the built in thing to view the elements in Chrome to find the class.
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Nov 19, 2012 15:23:34 GMT -8
... nicely done. =P I'll remember that for future use. And you got to the other thread I was talking about, too. =P
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Nov 19, 2012 18:52:10 GMT -8
Yes sir!!
|
|
inherit
154088
0
Jan 6, 2014 7:13:23 GMT -8
Liz
499
May 2010
frenchliving
|
Post by Liz on Nov 20, 2012 2:52:38 GMT -8
To hide it from the members list drop down, go to the the members template. Find this $[view_menu] and place this right below it. <script> <!-- $('li.viewOnlineToday').hide(); // --> </script> Thanks for this but there's a problem! I've tested it under the following 4 different user accounts Main Admin - it works Member - it works Global Mod and Mod - it doesn't work and still shows on the drop down menu Is there a fix for this?
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Nov 20, 2012 3:09:10 GMT -8
I know it's such a small script, but just a tip, you can do that with CSS
|
|
inherit
154088
0
Jan 6, 2014 7:13:23 GMT -8
Liz
499
May 2010
frenchliving
|
Post by Liz on Nov 20, 2012 5:12:09 GMT -8
I know it's such a small script, but just a tip, you can do that with CSS I'm a complete novice - can you tell me how?
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Nov 20, 2012 8:51:08 GMT -8
at the bottom of the CSS style sheet just add
li.viewOnlineToday { display: none; }
And Peter. I completely forgot about CSS until I saw something Shrike posted in another thread. Which was hours after this. So I just didn't change it. Honestly, I has just started to learn jQuery, and how much easier it is than Javascript, so I have kind of become only thinking about that(sily I know). LOL.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Nov 20, 2012 9:12:40 GMT -8
at the bottom of the CSS style sheet just add li.viewOnlineToday { display: none; } And Peter. I completely forgot about CSS until I saw something Shrike posted in another thread. Which was hours after this. So I just didn't change it. Honestly, I has just started to learn jQuery, and how much easier it is than Javascript, so I have kind of become only thinking about that(sily I know). LOL. jQuery is JavaScript
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Nov 20, 2012 9:15:22 GMT -8
I understand that, lol. But a 10x simpler Javascript.
|
|