我是opencart
的新用戶。我在我的主頁上安裝了精選產品。所以當一個人訪問時,他可以看到所有特色產品及其描述。現在,在這個特色頁面中,我使用<?php echo $product['price']; ?>
顯示了產品價格。它顯示產品價格沒有任何問題。 現在我想在特色頁面中顯示產品折扣。那麼該怎麼做?任何幫助和建議將非常可觀。Opencart在產品特色頁面顯示折扣價
3
A
回答
3
未經測試,但應在理論上工作。
首先,在catalog/language/english/module/featured.php
添加以下行:
$_['text_discount'] = '%s or more %s';
接下來,在catalog/controller/module/featured.php
做到以下幾點:
後$this->data['button_cart'] = $this->language->get('button_cart');
地址:
$this->data['text_discount'] = $this->language->get('text_discount');
後$product_info = $this->model_catalog_product->getProduct($product_id);
加:
$discounts = $this->model_catalog_product->getProductDiscounts($product_id);
$product_discounts[] = array();
foreach ($discounts as $discount) {
$product_discounts[] = array(
'quantity' => $discount['quantity'],
'price' => $this->currency->format($this->tax->calculate($discount['price'], $product_info['tax_class_id'], $this->config->get('config_tax')))
);
}
後'href' => $this->url->link('product/product', 'product_id=' . $product_info['product_id']),
地址:
'discounts' => $product_discounts
最後,在catalog/view/theme/<theme>/template/module/featured.tpl
任何您想要的內容添加到顯示:
<?php foreach ($product['discounts'] as $discount) { ?>
<?php echo sprintf($text_discount, $discount['quantity'], $discount['price']); ?><br />
<?php } ?>
0
最後,在目錄/視圖/主題// template/module/featured.tpl將它添加到你想要顯示的任何地方:
相關問題
- 1. OpenCart - 折扣後顯示價格
- 2. 向Opencart產品添加%年折扣
- 3. OpenCart產品頁面顯示首頁
- 4. 產品折扣?
- 5. 將特價的結束日期顯示在我的opencart產品頁面
- 6. Opencart增加特定產品的運輸折扣
- 7. Opencart未顯示產品的總價格
- 8. 在結帳頁面顯示優惠券折扣價:WooCommerce
- 9. 在magento產品頁面上顯示付款方式折扣規則
- 10. 如何在opencart中設置全球所有產品的折扣價格
- 11. 產品結算頁面中的特殊價格變化opencart
- 12. opencart產品頁面DIV
- 13. 產品動態折扣
- 14. 如何在產品視圖頁面中顯示特色產品pf prestashop
- 15. opencart價格滑塊不讀取折扣
- 16. 在類別頁面上顯示特色產品PRESTASHOP
- 17. 在Opencart中更改特價和折扣以百分比
- 18. woocommerce顯示特定頁面的產品
- 19. Opencart沒有顯示產品
- 20. 在opencart產品頁面中顯示尺寸
- 21. 在類別頁面中顯示產品模型opencart
- 22. 在OpenCart產品頁面上顯示自定義字段
- 23. 如何在opencart的單個頁面中顯示所有產品?
- 24. 如何讓貨幣在opencart的產品頁面上顯示?
- 25. Prestashop:如何在發票上顯示產品折扣
- 26. Woocommerce產品頁面未顯示產品
- 27. Prestashop:產品在類別頁面中顯示錯誤價格,但在產品頁面中顯示錯誤
- 28. 在產品頁面上顯示recent_viewed產品頁面
- 29. 產品頁面上的Magento折扣優惠券功能
- 30. 如何在首頁上顯示特價(銷售產品)在magento產品?
做任何向下表決之前的任何意見和建議會更有幫助。 – NewUser
你試過了什麼?由於OpenCart在**折扣**之間有所不同,因此產品折扣存儲在'$ product ['special']'中(如果您購買5件價格可以打折,如果您購買10件折扣,則折扣更多等)和**特價** - 限時特價優惠。所有顯示產品包裝盒的模塊中都會出現這種特殊功能,即使在**特色**模塊中也是如此。可能你玩過模板並刪除了那段代碼...... – shadyyx