1

我需要将经常性配置文件和简单产品添加到购物车。我怎么能在magento中做到这一点有没有可能做到这一点但是,当我去结账时,它说“标称物品只能单独购买。要继续,请从报价中删除其他项目。” 如何让人们同时订阅服务和购买产品?

4

1 回答 1

1

你不能,这就是核心中说明的原因:

/**
 * Temporary workaround for purchase process: it is too dangerous to purchase more than one nominal item
 * or a mixture of nominal and non-nominal items, although technically possible.
 *
 * The problem is that currently it is implemented as sequential submission of nominal items and order, by one click.
 * It makes logically impossible to make the process of the purchase failsafe.
 * Proper solution is to submit items one by one with customer confirmation each time.
 */
于 2013-05-22T10:15:51.160 回答