Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Rupesh Jorkar

    (@rupeshat1988)

    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.

    Thread Starter saeedtarnabi

    (@saeedtarnabi)

    Mr. Rupesh Jorkar
    I have successfully replaced the code and now it is working fine with firefox browser but dose not work on internet explorer and chrome browser. Kindly make some necessary changes for these browser. Thank you very much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I have found a problem with this plugin’ is closed to new replies.