我使用Magento 1.7快速查看了产品目录(list.phtml),但我无法获得FULL产品选项块,因此它与产品页面相同(显示选择,单选按钮,选择多个等)。有人能帮助我吗?
*抱歉我的英语不好。
我尝试了把view.phtml'代码,但这不起作用。 我也尝试了一些我在google上找到的教程,但是有些功能在select中转换了所有选项,但我需要整个块。
...
<?php if (!$this->hasOptions()):?>
<div class="add-to-box">
<?php if($_product->isSaleable()): ?>
<?php echo $this->getChildHtml('addtocart') ?>
<?php if( $this->helper('wishlist')->isAllow() || $_compareUrl=$this->helper('catalog/product_compare')->getAddUrl($_product)): ?>
<span class="or"><?php echo $this->__('OR') ?></span>
<?php endif; ?>
<?php endif; ?>
<?php echo $this->getChildHtml('addto') ?>
</div>
<?php endif; ?>
<?php echo $this->getChildHtml('other');?>
<?php if ($_product->isSaleable() && $this->hasOptions()):?>
<?php echo $this->getChildChildHtml('container1', '', true, true) ?>
<?php endif;?>
...