我对我的magento有几个商店视图,我写了一个php文件来更改所有产品描述,我想要的是如果商店视图上的描述“使用默认值”那么它不应该改变,我怎么能在更改之前检查是否设置了“使用默认值”?
答案 0 :(得分:0)
您可以以编程方式切换存储,然后将其值与默认值进行比较。喜欢以下代码。
$defaultDescription = $product->getDescription();
$storeDescription = $product->setStoreId(2)->getDescription();
if($defaultDescription != $storeDescription){
// Update product description
}