すべての製品に「specialtext」という名前の属性を作成しましたが、フロントエンドでこの specialtext フィールドの値を取得できません。何か考えはありますか?
質問する
1009 次
3 に答える
0
新しく作成された製品属性を表示するには、それを「属性セット」に追加する必要があります。この属性を属性セットに追加しましたか?
于 2013-09-09T10:44:56.463 に答える
0
text または textarea フィールド
これらの属性には、次を使用します。
// specify the attribute code
$attributeCode = 'name';
// build and filter the product collection
$products = Mage::getResourceModel('catalog/product_collection')
->addAttributeToFilter($attributeCode, array('notnull' => true))
->addAttributeToFilter($attributeCode, array('neq' => ''))
->addAttributeToSelect($attributeCode);
// get all distinct attribute values
$usedAttributeValues = array_unique($products->getColumnValues($attributeCode));
これが確実に役立つことを願っています。
于 2013-09-09T08:50:43.710 に答える