Magento,在主页上显示产品付款条件

Magento, showing payment of a product conditions on the homepage

有一个phtml文件骑着产品价值的支付,负责它的功能自动在产品安装条件的每个页面上,但不会在主页上出现支付条款我coloto one "carousel "特色产品。

有人会知道我在做什么吗?

注1:我用的是AllPago这个模块设置的条件只是我不能用代表没有权限的值。

注2:根据给我组装的源码(在magento中找到的文件名是这样的:allpago_installments / productviewtable.phtml

  <?php foreach ($this->getInstallments() as $installment): ?>
        <?php $result = count($this->getInstallments()); ?>
        <?php if($installment->getValue()==$result):?>
        <div class="product-view-parcel">
            <?php echo $installment->getValue() . ' x ' . $installment->getInstallment() . ' ' . $installment->getMessage(); ?>
        </div>
        <?php endif;?>
    <?php endforeach; ?>

注3:我尝试调用价格和条件的主页代码中的一部分(注意价格是否正确显示只有付款条款没有):

<div id="ripplesslider" class="ripplesslider" style="height: 470px!important;">
    <?php foreach ($_productCollection_slider as $_product): ?>
        <div id="slide" style="text-align: center !important;height: 470px!important;"
             class="latest-slider-item slide slider<?php echo $_product->getId() ?>">
            <a href="<?php echo $_product->getProductUrl() ?>"
               title="<?php echo $this->htmlEscape($_product->getName()) ?>">
                <div style="height: 200px!important;">
                    <img onmouseover="mouseover(<?php echo $_product->getId() ?>)"
                         onmouseout="mouseout(<?php echo $_product->getId() ?>)"
                         style="width:<?php echo $t ?>px;
                             height:<?php echo $imageheight ?>px; "
                         src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image'); ?>"
                         alt="<?php echo $this->htmlEscape($_product->getName()) ?>"/>
                </div>
            </a>

            <div class="desc-item">

                <div class="carousel-name-product"> <?php echo $_product->getName() ?></div>
                <div class="latest-price">

                    <?php if ($_product->getRatingSummary()): ?>
                        <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
                    <?php endif; ?>
                    <?php  $this->getPriceHtml($_product, true) ?>
                    <?php echo '<span czlass="price">' . str_replace('R$','', $this->getPriceHtml($_product, true)) . '</span>'; ?>

                </div>

            </div>
        </div>
    <?php endforeach ?>
</div>

哈哈工作人员已经知道了,我会post在这里我所做的也许可以帮助别人。

<div>
                                <?php echo '<span class="price">' . str_replace('R$','', $this->getPriceHtml($_product, true)) . '</span>'; ?>
                                <?php // object reference?>
                                <?php $reference = Mage::getStoreConfig('allpago/installments/active'); ?>
                                <?php//returns a new object. references ?>
                                <?php $installmentModel = Mage::getModel('installments/'.$reference); ?>
                                <?php //access the parameters to get the conditions have to function "getInstallmentHighest" to return the plots?>
                                <?php $installmentModel->setValue($_product->getFinalPrice()); ?>
                                <?php $installment = $installmentModel->getInstallmentHighest(); ?>

                                <span style="text-align: left;color: #A8A0A8;position: absolute;margin-top: -46px !important;margin-left: -78px !important;font-size: 12px;">
                                    <?php echo $installment->getValue().' x '. $installment->getInstallment() . ' ' . $installment->getMessage(); ?>
                                </span>


                            </div>