Hello Saeedtarnabi,
Sorry for late response, But in urgent bases i will provide you solution over here and update this solution asap.
a) Open this page:
“wp-content/plugins/wp-copy-data-protector/wp_copy_data_protector.php”.
b) search for below code:
<!–
/***
**
*** Below code for set IE-9 IE-10
**
–>
c)Now replace below code
<!–
/***
**
*** Below code for set IE-9 IE-10
**
–>
<script type=’text/javascript’>
window.addEventListener(“keydown”,function (e) {
var key;
if(window.event){
key = window.event.keyCode;
if(e.ctrlKey && (key == 65 || key == 67 || key == 85 || key == 80 || key == 83 || key == 70 || key == 17)){
alert(“Key combination CTRL + “+String.fromCharCode(key) +” has been disabled.”);
return false;
}else{
return true;
}
}else{
key = e.which;
if(e.keyCode == 123 || ( e.ctrlKey && (key == 65 || key == 67 || key == 85 || key == 80 || key == 83 || key == 70 || key == 17))){
e.preventDefault();
return false;
}else{
return true;
}
}
});
</script>
<?php
}
?>
d)NOw save the changes
e) Done.