我需要将重复的个人资料和简单的产品添加到购物车。我怎么能在magento这样做有没有可能做到这一点 但是,当我去结账时,它说“标称商品只能单独购买。要继续,请从报价中删除其他项目。“我如何允许人们同时订阅服务并购买产品?
答案 0 :(得分: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.
*/