Looking for help?
display all saved cart instead current date
To display all saved cart instead current date. add this shortcode to yourtheme/functions.php or use snippets code to add new snippet
add_filter('op_draft_orders_query_args',function($args){
unset($args['date_query']);
return $args;
},10,1);