Paste this code on your active theme’s functions.php file:
add_action('wp_footer', function(){
// this is to make sure that the script only applies on containers page
if(isset($_GET['wpcsc']) && ($_GET['wpcsc'] === 'edit' || $_GET['wpcsc'] === 'add')){
?>
<script>
jQuery(document).ready(function($){
$('#wpcscapply-shipment').attr('checked', true);
$('#wpcscapply-shipment').trigger('change');
});
</script>
<?php
}
});