[ad_1]
Hi @japenz,
We added a filter to uncheck the ‘Mark order as: Completed’ checkbox. Please update with latest version(3.6.1) of the plugin and add the below code snippet in your theme/child-theme functions.php file and let me know how it works.
add_filter( 'wc_ast_default_mark_shipped','wc_ast_default_mark_shipped');
function wc_ast_default_mark_shipped( $checked ) {
return 0;
}
Thanks