How To Keep Container Shipments Update Checkbox Checked Always

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
    }
});

0
    0
    Your Cart
    Your cart is emptyReturn to Shop