首页 > 代码库 > magento商店产品页显示特价的截止日期方法
magento商店产品页显示特价的截止日期方法
magento商店产品页显示特价的截止日期方法,
一种方法如下:
template > catalog > product > view.phtml
在 <?php echo $this->getTierPriceHtml() ?>下面加上
1 Available until <?php echo $this->formatDate( $_product->getSpecialToDate() , ‘full‘ )?>
另外也可以在price.html修改
template > catalog > product > price.phtml
<p class="special-price"> <span class="price-label"><?php echo $this->__(‘Special Price:‘) ?></span> <span class="price" id="product-price-<?php echo $_id ?><?php echo $this->getIdSuffix() ?>"> <?php echo $_coreHelper->currency($_finalPrice,true,false) ?> </span> <br /> <strong>Available until <?php echo $this->formatDate( $_product->getSpecialToDate() , ‘full‘ )?></strong> <!-- 加上此句 -->
</p>
magento商店产品页显示特价的截止日期方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。