Add the function below to your child theme functions.php file.
/** * Add order again button in my orders actions. * * @param array $actions * @param WC_Order $order * @return array */ function cs_add_order_again_to_my_orders_actions( $actions, $order ) { if ( $order->has_status( โcompletedโ ) ) { $actions[โorder-againโ] = array( โurlโ => wp_nonce_url( add_query_arg( โorder_againโ, $order->id ) , โwoocommerce-order_againโ ), โnameโ => __( โOrder Againโ, โwoocommerceโ ) ); } return $actions; } add_filter( โwoocommerce_my_account_my_orders_actionsโ, โcs_add_order_again_to_my_orders_actionsโ, 50, 2 );