Drupal Commerce - 点击 add to cart 直接跳去check out 页

有些情况下,我们希望能简化drupal commerce的收款流程,如 加入购物车 改为 马上付款,然后点击按钮后,直接跳去check out页,我们可以通过Rules 实现此功能
打开Admin > Configuration > Workflow > Rules
点击Add New Rule,输入rule的名称
选择事件After adding a product to the cart
在Actions下方,点击 Add Action
找到System, 选择 Page Redirect
输入想跳转的页面,因为drupal commerce cart 的地址是 http://yoursite/cart,所以这里输入 cart
保存Rule
最后,我们还得把 Add to cart 改为 Buy Now,我们可以通过hook_form_alter 实现。
转自诗人网站