我有这段代码:
$options = ($_Item->getProductOptions());
我如何拥有该选项的默认视图标签名称而不是翻译后的商店视图名称?
感谢。
答案 0 :(得分:1)
此特定代码取决于$item
对象的类。
从理论上讲,您可以通过在admin store中加载产品来获取默认视图标签:
Mage::getModel('catalog/product')->setStoreId(0)->load(PRODUCT_ID);
在您的情况下,它可能接近:
$productId = $item->getProductId();
$product = Mage::getModel('catalog/product')->setStoreId(0)->load($productId);
$label = $product->getName();
setStoreId(0)
在加载对象之前是关键组件。