今天做了一個關于添加產品時間屬性,讓日期小于當前日期時,pdp頁面顯示當前產品xx時候開始銷售,請等待…
1.建立magento日期屬性
2.獲取當前產品的日期屬性
3.獲取當前時間
4.轉化時間進行比較
<?php
$startDate = $_product->getResource()->getAttribute('sale_from_date')->getFrontend()->getValue($_product);
$endDate = date('Y-m-d');
$starDate = strtotime(strval($startDate));
$endDate = strtotime($endDate);
?>
<?php
$startDate = $_product->getResource()->getAttribute('sale_from_date')->getFrontend()->getValue($_product);
$endDate = date('Y-m-d');
$starDate = strtotime(strval($startDate));
$endDate = strtotime($endDate);
?>