Viewing 1 replies (of 1 total)
  • Thread Starter ashkan261

    (@ashkan261)

    I found the solution !

    for the disable select text or drape you must insert this code in wordpress header.php file + wp-copyprotect plugin

    <script language="JavaScript1.2">
    
    function disableselect(e){
    return false
    }
    
    function reEnable(){
    return true
    }
    
    //if IE4+
    document.onselectstart=new Function ("return false")
    
    //if NS6
    if (window.sidebar){
    document.onmousedown=disableselect
    document.onclick=reEnable
    }
    </script>
Viewing 1 replies (of 1 total)
  • The topic ‘wp-copyprotect plugin not worked in firefox’ is closed to new replies.