MarkFL |
04-25-2015 02:53 PM |
Quote:
Originally Posted by Stratis
(Post 2544153)
Can you be more specific so I can make changes to, thanks
|
In the template "memberinfo_block_visitormessaging" locate the line near the top:
Code:
<vb:if condition="$show['quickcomment'] AND $show['post_visitor_message']">
and directly above that, add:
Code:
<vb:if condition="$userinfo['userid'] != $bbuserinfo['userid']">
And then locate the code:
Code:
<input type="hidden" name="fromconverse" value="{vb:raw block_data.fromconverse}" />
</div>
</div>
</form>
</vb:if>
And directly below that, add:
This will prevent users from posting visitor messages to their own walls. Many times, new users do not realize that they are posting to their own wall when they reply to a visitor message and then the person to whom they think they are replying does not see the message unless they happen to revisit the user's profile, and this will eliminate that. :D
|