الطريقه للمنتديات :
1- افتح قالب Postbit او Postbit_legacy حسب استخدامك
2- ابحث Ctrl+F على
كود:
<div id="post_message_$post[postid]"
كود:
style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none; unselectable:on; onselectstart;return false; onmousedown:return false;"
كود:
<div id="post_message_$post[postid]" style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none; unselectable:on; onselectstart;return false; onmousedown:return false;">
الطريقه للمدونات والمواقع الاخرى :
اضف هذا الكود في CSS الخاص بموقعك :
كود:
-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none; unselectable:on; onselectstart;return false; onmousedown:return false;
هناك طريقه اخرى عبر استخدام الجافا سكريبت وهي باضافه هذا الكود فوق </head>
كود:
<script type="text/javascript"> if(document.addEventListener!=="undefined"){document.addEventListener('click',checkSelection,false);}else{document.attachEvent('onclick',checkSelection);} function checkSelection(){var sel={};if(window.getSelection){sel=window.getSelection();}else if(document.selection){sel=document.selection.createRange();} if(sel.rangeCount){sel.removeAllRanges();return;} if(sel.text>''){document.selection.empty();return;}} </script>