When you install WPML to manage translations, it automatically adds prompts for paid translations on the post editing page.
To remove them, a simple way is to delete the box from the DOM.

Insert the following code into your functions.php file:

add_action( 'admin_footer', 'wpmlRemoveBox_hook' );
function wpmlRemoveBox_hook( $hook_suffix )
{
?>
<script type="text/javascript">

jQuery( document ).ready(function() {
jQuery('.icl_cyan_box').remove();
jQuery('#cpt_info_box').remove();

});
</script>
<?php
}