magento显示物品所有价格
时间:2021-07-01 10:21:17
帮助过:28人阅读
magento 是一个非常著名的php开发的电子商务平台
- $product= Mage::getModel('catalog/product')->load(product_id);
- $price = $product->getPrice();
- $webprice = $product->getwebprice();
- $specialprice = ($_product->getSpecialPrice());
- if($specialprice==$price)
- {?>
- Price $
-
-
- Regular Price:
- $
-
-
- Web Special:
- $
-
|