We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Locked Topic
[ C ] Notifer PMs?
Topic Started: Jun 25 2012, 08:14 PM (570 Views)
Deleted User
Deleted User

Board Address: (Link to your board) http://w11.zetaboards.com/dusk_awarriorcatsrpg/index/
Board Software: (ZetaBoards or InvisionFree) ZetaBoards
Description: (What you want your code to do) I want to have a way to PM someone without them knowing who PMed them. But, I want for staff only to be able to do this for like warnings. Is it possible? :D
Goto Top
 
Joshua J
Member Avatar
Member
[ *  *  * ]
If u alouw staff to warn users then it sends it viaSystem Message
Offline Profile Goto Top
 
Deleted User
Deleted User

Okay, but what I really want to be able to do this... Is there a way, for like a Admin to PM a person saying that there shop request thing has happened? That is another reason I want to do this...
Goto Top
 
Helena-ZNR
Member Avatar
No PMs on this account please
[ *  *  *  *  *  *  * ]
You can use the warn system to do that as well. You would just log it as a note rather than a change in warn level. It will appear in their inbox as a system message.
Offline Profile Goto Top
 
Deleted User
Deleted User

Yes, but then it says it is a warning. I have tried that... I guess I will just close this. Thanks for the answers anyways. ^^
Goto Top
 
H3LLH0UND
Member Avatar
Hellish Hound
[ *  * ]
Just create an Anonymous account for others to use. Turn off the PM system so that only that account can PM and people can not send one back.

This works for PMing people without them knowing who it is from. This is what i use as a ghost account. I also have mine set so people can not see the account when they click on the user. Meaning the account information is hidden from everyone.

This is about the only way to do what you ask. Well the closest thing that I can think that is.

If you do PM someone using the Anonymous account, have at the end.....


blah blah blah blah blah blah
--------------------------------------------------------------
This is an automated response. Please do not reply as any message sent, will not be received. If you have any questions, feel free to ask any Admin or Mod online. Thank you and have a nice day.
Offline Profile Goto Top
 
Deleted User
Deleted User

Thank you! But... How do you make it non clickable? And can you kind of explain how the Anonymous account is made and works? If a staff sees it, can they see your IP Address?
Goto Top
 
H3LLH0UND
Member Avatar
Hellish Hound
[ *  * ]
Okay, first:

Just make a new account called Anonymous. Makeup the email part of it. Then afterwards, go into your ADMIN CP and set the account to admin. This way you wont have to confirm the email.

Second, set the account so you can send PMs but not receive them.

Third, You will need to put in a code in the board template area in the ADMIN CP section. The codes will help hide the account.

I have not found a code to shield the IP address from other admins, other than making them Moderators and editing the ability so they can not see IP addresses of anyone.

This is alot to do, but it will get the result you want. Let me know if you want to go ahead with this and I will post the Codes for hiding the account you make.

Good luck in whatever you decide!!!
Offline Profile Goto Top
 
Ferby
Member Avatar
Developer
[ *  *  *  *  * ]
I think I'd like that code
Offline Profile Goto Top
 
Deleted User
Deleted User

I would like to codes if you could. It sounds really cool. :)
Goto Top
 
H3LLH0UND
Member Avatar
Hellish Hound
[ *  * ]
I'll post the codes when i get off work tonight. Laterz.
Offline Profile Goto Top
 
Deleted User
Deleted User

Thank you. ^^
Goto Top
 
H3LLH0UND
Member Avatar
Hellish Hound
[ *  * ]
Okay here they are,

So the first one makes it so you cannot click on the profile as well as no one can PM you either.

Admin CP Posted Image Themes Posted Image Board Template Posted Image Below the Board
Code:
 
<script type="text/javascript">
(function ($) {
var profile_id = 'ACCOUNT_NUMBER';

$('td.c_username a[href*="/profile/' + profile_id + '"]').parents('tr[id*="post"]').next('tr').find('td.c_user').empty();

$('a[href*="/profile/' + profile_id + '"]').each(function () {
var text = $(this).text();
$(this).replaceWith(text);
});

if (location.href.indexOf('/msg/?c=2&mid=' + profile_id + '') !== -1) {
$('#pm_compose').replaceWith('<table cellspacing="0" id="error_box"><thead><tr><th>Access Denied:</th></tr></thead><tbody><tr class="generic"><td>You do not have permission to PM this user</td></tr></tbody></table>');
}

if ($('#pm_viewer thead th').html() === username) {
$('dl.user_info').closest('td').remove();
$('#pm_quick_reply').remove();
}
})(jQuery);
</script>

Replace ACCOUNT_NUMBER with the profile number you want.


The Second one is Optional as it only hides the user from the MEMBERS section of the forums.


Admin CP Posted Image Themes Posted Image Board Template Posted Image Below the Board
Code:
 
<script type="text/javascript">
(function($) {
var profile_id = 'ACCOUNT_NUMBER';

$('div.c_view-list a[href*="/profile/' + profile_id + '"], #stats_members a[href*="/profile/' + profile_id + '"]').remove();

$('div.c_view-list, #stats_members').html($('div.c_view-list, #stats_members').html().replace(/,\s*/gi,''));

$('#stats_members:empty, div.c_view-list:not(:has(a))').remove();

$('div.c_view-list a:not(:last), #stats_members a:not(:last)').after(', ');
})(jQuery);
</script>

Replace ACCOUNT_NUMBER with the profile number you want.



This last one is Optional as well. It will display the user Anonymous in the "Who Is Online" area at the bottom.

Admin CP Posted Image Themes Posted Image Board Template Posted Image Below the Board
Code:
 
<script type="text/javascript">
$('#stats_legend a:contains(ACCOUNT_NAME)').remove();

$('#stats_legend').html($('#stats_legend').html().replace(/·\s*/gi,''));

$('#stats_legend a:not(:last)').after(' · ');
</script>


Replace ACCOUNT_NAME with the account NAME you want to hide.


Hope these help. If you have any questions, just let me know. Good luck to you!!! By the way, I like the board design you choose. Very nice :D
Offline Profile Goto Top
 
Deleted User
Deleted User

Thank you! Also, can they see the IP Address?
Goto Top
 
Steve
Member Avatar
patriot
[ *  *  *  *  *  *  *  *  *  * ]
Completed!

Your request has been completed. If you have any questions or concerns regarding the state of your request, please feel free to contact me via PM.
Offline Profile Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Closed Requests · Next Topic »
Locked Topic