Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/magento/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Magento 如何向购物车添加重复配置文件和简单产品_Magento - Fatal编程技术网

Magento 如何向购物车添加重复配置文件和简单产品

Magento 如何向购物车添加重复配置文件和简单产品,magento,Magento,我需要添加重复配置文件和简单的产品到购物车。在magento我该怎么做有什么办法吗 然而,当我去结帐时,它说“名义商品只能单独购买。要继续,请从报价中删除其他商品。”我如何允许人们同时订阅服务和购买产品?你不能,以下是核心部分中说明的原因: /** * Temporary workaround for purchase process: it is too dangerous to purchase more than one nominal item * or a mixture of n

我需要添加重复配置文件和简单的产品到购物车。在magento我该怎么做有什么办法吗
然而,当我去结帐时,它说“名义商品只能单独购买。要继续,请从报价中删除其他商品。”我如何允许人们同时订阅服务和购买产品?

你不能,以下是核心部分中说明的原因:

/**
 * 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.
 */

你不能,以下是核心部分所述的原因:

/**
 * 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.
 */