4
Drupal Commerce'de ödeme sayfasına yönlendiren anonim kullanıcılar için programlı olarak sipariş oluşturma
Ryan'ın programlı bir sipariş oluşturabileceğiniz harika bir kodu var <?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 …