1
是否有一個magento函數存在,它允許我根據使用的屬性選項加載可配置產品子產品。根據屬性選項加載Magento可配置產品
比如我有T恤的顏色和大小的選項值,比如10,45(選項代碼的),我想快速得到孩子簡單的產品
是否有一個magento函數存在,它允許我根據使用的屬性選項加載可配置產品子產品。根據屬性選項加載Magento可配置產品
比如我有T恤的顏色和大小的選項值,比如10,45(選項代碼的),我想快速得到孩子簡單的產品
的ID爲一個可配置的產品$product
,使用此功能:
$product->getTypeInstance(true)->getProductByAttributes($attributesInfo, $product);
其中$attributeInfo
是$attributeId => $attributeValue
定義的陣列。
此簡單配置擴展:http://www.magentocommerce.com/magento-connect/Matt+Dean/extension/596/simple-configurable-products –