4
在Drupal Commerce中以编程方式为匿名用户重定向到付款页面创建订单
Ryan有一些很棒的代码,您可以以编程方式创建订单 <?php global $user; $product_id = 1; // Create the new order in checkout; you might also check first to // see if your user already has an order to use instead of a new one. $order = commerce_order_new($user->uid, 'checkout_checkout'); // Save the order to get its ID. commerce_order_save($order); // …