1
제품 목록에 사용자 정의 속성 추가
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 페이지에서 사용한 것과 동일한 코드이며 거기서 작동합니다. …