关系下拉列表/选择Magento后端中的产品属性


Relational Dropdown/Select product attributes in Magento backend

我正在为一家汽车配件公司开发Magento商店。有许多特定于车辆的项目需要品牌/型号/年份属性,但是我找不到允许创建关系属性下拉列表的扩展 - 我需要三个下拉列表,其选项会根据之前的下拉列表选择动态变化,例如:

下拉菜单 A 有四个战车品牌。然后选择"品牌",然后使用一组特定的选项填充"模型"下拉列表,依此类推。

这在马真托可能吗?我看过一些品牌/型号/年份扩展,但它们都是文本输入 - 工作人员输入错误的空间太大。我也尝试过 VehicleFits,但它不起作用/抛出很多错误,似乎开发已经停止。

我已经搜索了高低,任何帮助将不胜感激。

无法在"管理属性"下直接或直接创建相关商品属性。但是,您可以通过创建可配置产品来使您的属性相互依赖。

假设您有 2 种颜色(黑色和蓝色)和 2 种尺寸(L,XL),并且您想使颜色取决于尺寸。

At first create 2 attributes size and color of type dropdown under Manage attributes and create the attribute options and values. and Assign it to the right attribute set.
Now create the simple products , lets say product A with size L and color Black and product B with color Blue and size XL.
Now create a configurable product lets say AB and associate these two simple products A and B. Save the product.

如果客户打开产品AB,如果他们选择尺寸L,他们只能找到黑色。通过这种方式,您可以使产品属性相互依赖。

来源:这里

或者这可能是您正在寻找的:http://www.magentocommerce.com/magento-connect/dependent-custom-options-configurable.html

希望对您有所帮助。