I have the same “problem” – I would like to disable “enter button” -> If anyone could help in which file put what kind of code I will be very grateful
I’ve found some solution: Add this code in <head> section:
<script type="text/javascript">
function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
if ((evt.keyCode == 13) && (node.type=="text")) {return false;}
}
document.onkeypress = stopRKey;
</script>
For me it works 🙂
This didnt work for me… have you found a better solution?