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

时间:2015-03-02 18:12:47

标签: php magento payment

有一个phtml文件,支付产品的价值,负责它的功能会自动放在产品分期条件的每一页上,但是不会在主页上显示支付条款,我会在其中输入一个“轮播”特色产品。

有人会暗示我的所作所为吗?

注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>

1 个答案:

答案 0 :(得分:0)

哈哈的工作人员已经有了,我会在这里发布我的所作所为,或许可以帮助别人。

<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>