こんにちは私はこれについて多くの記事を読んできましたが、それは完了していません。list.phtmlの商品属性を表示する - Magento
たとえば、属性1 =靴のサイズ、肌の色2 =靴の色。 どちらもドロップダウンにあり、カテゴリーページ内の商品ごとに考えられるすべての属性色をリストしたいと思います。
問題:コードをテストすると、すべてのポビビットの代わりに最初のシューカラーのみが表示されます。私はここで間違って何をしていますか?
ここに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; ?>
私はあなたの問題を理解しませんでした。 「可能なアトリビュートカラーすべてをリストアップする」という意味ですか?製品ページに設定可能な値が表示されているはずです。 –