Hey, @wpmasterscom Thanks a ton this is working perfectly!!
Hey,
Thank you @wpmasterscom but till when can you release this next version?
I have already added some code in the plugin but i’m stuck at the trigger side if you can improve this code or help me with something i’m looking for it will be great help.
add_filter( 'woocommerce_order_actions', 'filter_wc_add_clone_order_action', 20, 1 );
function filter_wc_add_clone_order_action( $actions ) {
$actions['clone_order'] = __( 'Clone Order', 'woocommerce' );
return $actions;
}
add_action( 'woocommerce_order_action_clone_order', 'trigger_action_clone_order', 20, 1 );
function trigger_action_clone_order( $post ) {
}