MissNK
New Member
nothing but a dreamer
Posts: 50
inherit
213056
0
Jul 21, 2017 2:42:53 GMT -8
MissNK
nothing but a dreamer
50
August 2014
missnk
|
Post by MissNK on Sept 4, 2014 2:46:49 GMT -8
Forum link: MorpheusI use the whisper tag plugin from the library. Overall it works fine, but I (as admin) can't see the whispers made by members, unless I edit the specific post. I would like to know if there is a way around that, so the staff can always read / see the whispers made by other members and not only if editing the post. I hope someone can help me out.
|
|
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 Sept 18, 2014 9:40:05 GMT -8
Hey MissNK, Try going to Admin > Plugins > Manage. From there, click the "Edit" button in the permissions column for the Whisper Tags plugin. In there, you can edit the permissions so the plugin is not visible to administrators. That way, the plugin will not hide the things that people are whispering from administrators and you'll see it all.
|
|
MissNK
New Member
nothing but a dreamer
Posts: 50
inherit
213056
0
Jul 21, 2017 2:42:53 GMT -8
MissNK
nothing but a dreamer
50
August 2014
missnk
|
Post by MissNK on Sept 19, 2014 3:59:46 GMT -8
Hey David Clark, First: thank you for your reply. Second: your solution doesn't seem to solve the problem. By switching of the whisper-tag for the staff members I am no longer able to create any whispers, but I still can't read the whispers made by members (unless I edit their posts). Do you have any other suggestions? To make sure I get the settings right, I made a print-screen:
|
|
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 Sept 19, 2014 7:50:35 GMT -8
I may be misunderstanding how the plugin works, so let me take a closer look when I have a moment MissNK and I'll get back to 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 Sept 19, 2014 9:35:53 GMT -8
Seems that Todge, being the thoughtful programmer that he is, put the plugin together so that it would not show whispers even if the plugin were to be disabled at a later time.
Here's a code you can place in your Global Header that will show all whispers to staff members, though.
$(document).ready(function() { if ($('.message div[title*="whisper"]').length >= 1 && proboards.data('user').is_staff == 1) { $('.message div[title*="whisper"]').css("font-size", "13px"); } });
|
|
MissNK
New Member
nothing but a dreamer
Posts: 50
inherit
213056
0
Jul 21, 2017 2:42:53 GMT -8
MissNK
nothing but a dreamer
50
August 2014
missnk
|
Post by MissNK on Sept 19, 2014 10:44:20 GMT -8
Thankyou David Clark, that just made my day! It works perfect
|
|
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 Sept 19, 2014 11:50:19 GMT -8
No problemo, MissNK, glad it worked.
|
|