Ответы пользователя по тегу Интернет-магазины
  • Magento карточка товара

    Hide
    @Hide
    инженер-программист
    Используйте этот код:
    <?php if ($_product->getShortDescription()):?>
        <div class="short-description">
            <h2><?php echo $this->__('Quick Overview') ?></h2>
            <ul><?php
                $groupId = 88;
                $attributesCollection = Mage::getResourceModel('catalog/product_attribute_collection');
                $attributesCollection->setAttributeGroupFilter($groupId);
                foreach ($attributesCollection as $attribute) : ?>
                    <li>
                        <b><?php echo $attribute->getFrontend()->getLabel(); ?></b>:
                        <?php echo $attribute->getFrontend()->getValue($_product); ?>
                    </li>
                   <?php
                endforeach; ?>
            </ul>
        </div>
    <?php endif;?>

    где $groupId - это ID группы
    d5dd9f6f0fd237ea4d368ca9a5825398daf8e8b2

    А так это будет выглядеть на фронтенде:
    068c472839d19b737109ed772cd53c627184aef0
    Ответ написан
    Комментировать