Magento中未显示产品特价

vd8tlhqk  于 2022-11-12  发布在  其他
关注(0)|答案(2)|浏览(180)

我得到了一个问题。虽然我得到了解决方案,但我仍然想知道为什么它赶上了。我有一个Magento网站与桌面版本和移动的版本。在类别页面,它显示的产品列表,因为你已经知道。现在,有一个问题
每个产品的结构如下所示:

Product Name
Image
Regular Price
Special Price

在移动的版是可以的,但桌面版没有特价.我用代码

"$product->getSpecialPrice()"

这些版本的不同之处仅在于前端,后端的所有函数都是相同的。确切地说,产品数据是由同一个函数检索的

getLoadedProductCollection()

Magento Core的产品列表块。所以,我真的不明白为什么我能够通过在移动的版中调用$product->getSpecialPrice()来获得特价的值,而不是在桌面版中。
请帮帮我,谢谢。

h9vpoimq

h9vpoimq1#

<?php
include_once 'app/Mage.php';
Mage::app();
Mage::getSingleton('core/session', array('name' => 'frontend'));

$_productCollection = Mage::getResourceModel('catalogsearch/advanced_collection')
            ->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes())
            ->addMinimalPrice()
            ->addStoreFilter();

Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($_productCollection);
Mage::getSingleton('catalog/product_visibility')->addVisibleInSearchFilterToCollection($_productCollection);

$todayDate = date('m/d/y');
$tomorrow = mktime(0, 0, 0, date('m'), date('d')+1, date('y'));
$tomorrowDate = date('m/d/y', $tomorrow);

$_productCollection->addAttributeToFilter('special_from_date', array('date' => true, 'to' => $todayDate))
    ->addAttributeToFilter('special_to_date', array('or'=> array(
    0 => array('date' => true, 'from' => $tomorrowDate),
    1 => array('is' => new Zend_Db_Expr('null')))
    ), 'left');

foreach($_productCollection as $_product){
    if($_product->getData('special_price')!=null){
        echo '<img src="'.$this->helper('catalog/image')->init($_product, 'thumbnail')->resize(75).'" alt="'.$_product->getName().'" /><br />';
        echo $_product->getName().'<br />';

    $specialPrice = $_product->getData('special_price');
    $orignalPrice = $_product->getData('price');
        echo number_format($specialPrice, 2)."<br/>";
        echo number_format($orignalPrice, 2)."<br/>";                    
        echo '<a href="http://www.yourwebsite.com/magento/checkout/cart/add?product='.$_product->getId().'&qty;=1">Add To Cart</a><br />';
    }
}
?>
tp5buhyn

tp5buhyn2#

只使用getFinalPrice而不是getSpecialPrice。:D

相关问题