問題描述
你好,我已經閱讀了很多關于這個的帖子,雖然它有效但并不完整.
Hello I have read many posts about this, and while it works its not complete.
例如;屬性 1 = 鞋碼,屬性 2 = 鞋色.兩者都在下拉列表中,我想在類別頁面中列出每個產品的所有可能的屬性顏色.
For example; Attribute 1= shoesize and attribute 2 = shoe color. Both are in a dropdown and I would like to list all of the possible attribute colors per product within the category pages.
問題:當我測試代碼時,它只會顯示第一個鞋子顏色,而不是所有可能性.我在這里做錯了什么?
Problem: When I test the code it will only display the first shoe color, instead of all posibilites. What am I doing wrong here?
以下是我所擁有的 3 個示例.所有代碼都有效,但只顯示第一個屬性顏色.示例 1:
Here are 3 examples of what I have. All code work, but only shows the first attribute color. Example 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; ?>
推薦答案
你可以在屬性編輯頁面進行配置
you can just config it in attribute edit page
用于產品列表 -> 是
Used in Product Listing -> Yes
這篇關于在 list.phtml 中顯示產品屬性 - Magento的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!