catalog / product / list.phtml 파일의 작은 문제와 혼동됩니다.
Magento와 함께 제공되는 Manufacturer 속성을 그리드 목록에 추가하려고하는데 다음 코드를 추가했습니다.
<?php echo $_product->getAttributeText('manufacturer') ?>
<?php if( $_product->getAttributeText('manufacturer') ): ?>
<p class="manufacturer">Manufactured by:<br/><?php echo $_product->getAttributeText('manufacturer')?></p>
<?php endif; ?>
이제 이것은 내 product / view.phtml 페이지에서 사용한 것과 동일한 코드이며 거기서 작동합니다. 그러나 이것은 자체적으로 에코 또는 if 문에서 에코를 사용하여 전혀 작동하지 않습니다. 둘 다 아무것도 반환하지 않습니다.
그래서 list.phtml 파일에서 이러한 속성을 얻으려면 특별한 작업을 수행해야합니까?