我試圖在magento中顯示具有保存的金額百分比的銷售圖標,到目前爲止我已成功完成此操作。但我面臨的問題是 銷售圖標顯示在所有頁面上該產品是否有特價。銷售圖標只有在特價時纔會顯示。我在list.phtml中使用下面的代碼。我不是程序員。我很感謝您的幫助,以糾正這些代碼,以便只有在特價時纔會出現銷售圖標。在此先感謝如何在magento中的分類列表頁面中顯示銷售圖標
<?php $specialprice = $_product->getSpecialPrice();
$regularprice = $_product->getPrice();
// Get the Special Price FROM date
$specialPriceFromDate = $_product->getSpecialFromDate();
// Get the Special Price TO date
$specialPriceToDate = $_product->getSpecialToDate();
// Get Current date
$today = time(); if ($specialprice)if($today >= strtotime($specialPriceFromDate) && $today <= strtotime
($specialPriceToDate) || $today >= strtotime($specialPriceFromDate) && is_null($specialPriceToDate))$discount = 100
- round(($specialprice/$regularprice)*100); {?><span class="onsaleicon"><span class="onsaletext"> <?php echo
$discount .'% OFF' ;?></span></span> <?php } ?></a>`
感謝馬呂斯它像一個魅力:) –
@NohoAdam。別客氣。如果它有效接受答案。不要留下任何鬆散的末端。 – Marius