我有不同颜色(白色和蓝色)和不同尺寸(中号和大号)的产品
我如何获得产品的这些值。
我正在尝试使用以下代码获取颜色的所有值:
require_once '../magento/app/Mage.php';
Mage::app();
$store_id = Mage::app()->getStore()->getStoreId();
$config = Mage::getModel('eav/config');
$attribute = $config->getAttribute(Mage_Catalog_Model_Product::ENTITY, 'color');
$values = $attribute->setStoreId($storeId)->getSource()->getAllOptions();
print_r($values);
但我只想获得 2 种颜色和尺寸的产品。