SUPER ADMIN
- Joined
- Sep 3, 2025
- Messages
- 267
- Reaction score
- 17
5
MONTHS
5
MONTHS OF SERVICE
Step 1: Go to Admin CP → Appearance → Select the style you are using → Templates
Step 2: Find the PAGE_CONTAINER template
Step 3: Insert the code below right before the </body> tag (very important)
CSS:
<script>
document.addEventListener('DOMContentLoaded', function () {
// Chặn sao chép nội dung
document.addEventListener('copy', function (e) {
alert('⚠️ Content on 1kho.net forum is prohibited from copying!');
e.preventDefault();
});
// Chặn chuột phải
document.addEventListener('contextmenu', function (e) {
alert('🛑 Right click is disabled!');
e.preventDefault();
});
});
</script>