Show product attributes in list.phtml - Magento(在 list.phtml 中显示产品属性 - Magento)
问题描述
你好,我已经阅读了很多关于这个的帖子,虽然它有效但并不完整.
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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 list.phtml 中显示产品属性 - Magento


基础教程推荐
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何替换eregi() 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01