inherit
118095
0
Feb 25, 2021 0:36:17 GMT -8
Rosefriend
Friendship is the Finest Rose in the Garden of Life
1,855
January 2008
rosefriend
|
Post by Rosefriend on Nov 19, 2012 11:08:16 GMT -8
Is this possible with a template please??
RF
|
|
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 11:26:39 GMT -8
Because the report button comes as part of a dropdown list (signified by $[post.select_options] in the template, instead of a list of editable options) you'd be looking at a plugin, rather than a template mod, I believe.
|
|
inherit
118095
0
Feb 25, 2021 0:36:17 GMT -8
Rosefriend
Friendship is the Finest Rose in the Garden of Life
1,855
January 2008
rosefriend
|
Post by Rosefriend on Nov 19, 2012 11:39:49 GMT -8
Thanks Paul..
RF
|
|
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 14:07:47 GMT -8
This may not be the best option, but it works.
Go to the Templates page. Select Thread, then go to the post list tab. Then find
$[post.select_options]
and below that place
<script> <!-- $('li.$[post.id]-reportPost').hide(); // --> </script>
|
|
inherit
118095
0
Feb 25, 2021 0:36:17 GMT -8
Rosefriend
Friendship is the Finest Rose in the Garden of Life
1,855
January 2008
rosefriend
|
Post by Rosefriend on Nov 20, 2012 0:47:55 GMT -8
Marvellous, thanks - I will certainly try it out..
RF
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Nov 20, 2012 2:30:17 GMT -8
Because the report button comes as part of a dropdown list (signified by $[post.select_options] in the template, instead of a list of editable options) you'd be looking at a plugin, rather than a template mod, I believe. li[class*="reportPost"] { display: none; }
|
|
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 20, 2012 7:26:09 GMT -8
Because the report button comes as part of a dropdown list (signified by $[post.select_options] in the template, instead of a list of editable options) you'd be looking at a plugin, rather than a template mod, I believe. li[class*="reportPost"] { display: none; } Something shorty taught me after I made that post, haha. Been a while since I've done a great deal online, taking some getting used to again. =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 20, 2012 8:54:01 GMT -8
li[class*="reportPost"] { display: none; } That's something I did not know how to do. Thatnks Peter! Is the asterisk just signifying that it's not an exact match of a class?
|
|
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:00:50 GMT -8
li[class*="reportPost"] { display: none; } That's something I did not know how to do. Thatnks Peter! Is the asterisk just signifying that it's not an exact match of a class? Basically, yes. What "*" does is match at least once instance of the value in the attribute value. Ideally, I should have used "$", as "reportPost" is at the end of the attribute value, but wasn't thinking at the time.
|
|
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:02:12 GMT -8
Ahh. Thanks for the info!
|
|
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:08:34 GMT -8
|
|
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:14:41 GMT -8
Thanks. Will definantly read into that!
|
|