如何使用magento在产品视图页面的右侧显示所有自定义选项?

时间:2014-07-07 13:09:18

标签: magento magento-1.7 magento-1.8

我在自定义选项中添加了管理员的颜色,大小和保修。我想在产品视图页面的右栏中显示这些自定义选项,但它没有显示在右侧。 你能告诉我如何在右侧显示自定义选项。

如果有人知道这一点,请帮助我。 谢谢!

2 个答案:

答案 0 :(得分:0)

尝试以下代码:

<?php if ($_product->isSaleable() && $_product->hasOptions()):?>
                <?php echo $this->getBlockHtml('container1', '', true, true) ?>
            <?php endif;?>

<?php if ($_product->isSaleable() && $_product->hasOptions()):?>
                <?php echo $this->getBlockHtml('container2', '', true, true) ?>
            <?php endif;?>

答案 1 :(得分:0)

Amit的代码应该有效。但是,您是否可以确保将前端产品视图页面上的Visible属性设置为yes。

enter image description here