您好我已经阅读了很多关于此的帖子,虽然它的工作原理并不完整。
例如;属性1 =鞋类和属性2 =鞋色。 两者都在下拉列表中,我想列出类别页面中每个产品的所有可能的属性颜色。
问题:当我测试代码时,它只显示第一个鞋子颜色,而不是所有的posibilites。我在这里做错了什么?
以下是我所拥有的3个例子。所有代码都有效,但只显示第一个属性颜色。 例1:
<!-- Find the following loop -->
<?php foreach ($_productCollection as $_product): ?>
<!-- Inside it insert one of the following codes as needed -->
<!-- Use this for regular text attributes -->
<?php echo $_product->getMyAttribute() ?>
<?php echo $_product->getAnotherCustomAttribute() ?>
<!-- Use this for dropdown attributes -->
<?php echo $_product->getAttributeText('shoecolor') ?>
<?php endforeach?>
<!-- ... -->
示例2
<?php echo $_product->getResource()->getAttribute('shoecolor')->getFrontend()->getValue($_product) ?>
示例3
<?php $type = "simple"; $p = "0" ?>
<?php foreach ($_productCollection as $_product): ?>
<?php $custom = Mage::getModel('catalog/product_type_configurable')->setProduct($_product); ?>
<?php $col = $custom->getUsedProductCollection()->addAttributeToSelect('shoecolor')->addFilterByRequiredOptions(); ?>
<?php foreach($col as $simple_product) { $p=$simple_product->getId(); $type="configurable"; } ?>
<?php if($type == "configurable"): ?>
<h5><?php echo $_product->load($p)->getAttributeText('shoecolor'); ?><?php $type="simple" ?></h5>
<?php endif; ?>
答案 0 :(得分:14)
你可以在属性编辑页面中配置它
用于产品清单 - &gt;是
答案 1 :(得分:6)
另一种方式
$_product = Mage::getModel('catalog/product')->load($this->getProduct()->getId());
如果你创建一个像你这样的属性&#34; shoesize&#34;然后你可以通过以下代码访问。
如果您的属性类型为文本字段($ _product应加载):
<?php
echo $_product->getShoesize();
// if your arribute was shoe_size then
echo $_product->getShoeSize();
?>
如果您的属性类型为Multiple Select或Dropdown,则获取所有属性值:
<?php
echo $_product->getAttributeText('shoesize');
?>
答案 2 :(得分:1)
以下是不属于任何产品的代码获取属性名称和值
$attributeCode = 'YOUR_ATTRIBUTE_CODE';
$product = Mage::getModel('catalog/product');
$productCollection = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', $attributeCode);
$attribute = $productCollection->getFirstItem()->setEntity($product->getResource());
print_r($attribute->getData()); // print out the available attributes
$options = $attribute->getSource()->getAllOptions(false);
print_r($options); // print out attribute options
答案 3 :(得分:0)
试试这个:
$_pp2 = Mage::getModel('catalog/product')->load( $_product->getId() );
echo $_pp2->getdm();
在:
<?php $i=0; foreach ($_productCollection as $_product): ?>
<?php if ($i++%$_columnCount==0): ?>
属性代码:dm
Type: Text area
在view.phtml中
echo $_product->get>getdm(); ?>