Blocking Another Person

anikka

Active member
Is there a way I can "block" a member so I don't have to read their comments? It's not that they are saying something they should be on the site just that I don't like their attitude. So I just want to block them so I don't have to see what they post. :)
 
Aaaack - you made me have a flashback anikka!!! :cussing: :booty" :crazytongue:

Seriously though - I do fear our happy forums would take a turn for the worse if admin did this - just my opinion. :)
 
This ignore user mod has been installed. Go to your Profile in the forum and then "Ignore User Options" . Let me know if it works.
 
Im not really going to use the feature but it looks like you can see if you are on someones ignore list? Ignored by: 0 member Is that how its going to work? Its different if someone is ignoring you and you dont know it :laughing: but to open your profile and see that you are on 1 or 20 ignore list would be hurtful. :laughing:
 
Ken you could prob take the number out of the profile view. It would be hurtful for everyone to see how many people blocked them, it would single people out.

./Themes/default/Profile.template.php

Code:
//-Ignore MOD- Start
	echo '
				<tr>
					<td><b>', $txt['ignored_by'] ,':</b></td>
					<td>', $context['member']['ignored_by_num'], ($context['member']['ignored_by_num']>1 ? $txt['members'] : $txt['member']),'</td>
				</tr>';
	//-Ignore MOD- End

Besides that it works great.
 
I pulled those rows out from the template code. Should be good. Thank you.

Ken you could prob take the number out of the profile view. It would be hurtful for everyone to see how many people blocked them, it would single people out.

./Themes/default/Profile.template.php

Code:
//-Ignore MOD- Start
	echo '
				<tr>
					<td><b>', $txt['ignored_by'] ,':</b></td>
					<td>', $context['member']['ignored_by_num'], ($context['member']['ignored_by_num']>1 ? $txt['members'] : $txt['member']),'</td>
				</tr>';
	//-Ignore MOD- End

Besides that it works great.
 
Back
Top