Prevent from right click for save & disable drag
i tested this code on mybb v1.8.19, i added to headerinclude
Code:
<script> $(document).ready(function () { $('img').on('dragstart', function () { return false; }); $('img').on('contextmenu', function () { return false; }); }); </script>
i tested this code on mybb v1.8.19, i added to headerinclude