Spammers are using work at home jobs to spread their scum, in other words using real humans.
The "share" button or send to a friend is used by spammers more and more. (Copy & Paste)
The following should help prevent the "drones" from spreading the spammers scum.
This is only an example and can be used in the comment form or any form.
The problem is you do not want your customer not to be able to paste in some forms.
However the "send to a friend" form should not need to be pasted.
Edit your oc-content/themes/your_theme/item-send-friend.php
Find around line 77: (For bender 1.0)
<div class="control-group">
<label class="control-label" for="message">
<?php _e('Message', 'bender'); ?></label>
<div class="controls textarea">
<?php SendFriendForm::your_message(); ?>
</div>
</div>
Change to:
<div class="control-group">
<label class="control-label" for="message">
<?php _e('Message', 'bender'); ?></label>
<div class="controls textarea" id="nopaste">
<?php SendFriendForm::your_message(); ?>
</div>
</div>
Edit your oc-content/themes/your_theme/js/global.js
At the very end add the following:
window.onload = function() {
var nopaste = document.getElementById('nopaste');
nopaste.onpaste = function(e) {
e.preventDefault();
alert ("Pasting has been disabled to help prevent spam");
}
}
Now when the drone tries to paste they will receive a message "Pasting has been disabled to help prevent spam"
Of course this is not fool proof but just another tool.
David