我一直試圖按降序排列價格排序相關產品(最便宜的頂部和昂貴的底部)到目前爲止沒有任何運氣,也許有人可以指導我如何做到這一點?Magento按價格排序相關產品
0
A
回答
0
看到此文件的應用程序\代碼\核心\法師\目錄\型號\ Product.php,並檢查該功能線814
public function getRelatedProductCollection()
{
$collection = $this->getLinkInstance()->useRelatedLinks()
->getProductCollection()
->setIsStrongMode();
$collection->setProduct($this);
return $collection;
}
您需要修改通過擴展這個模型類此功能,所以首先要創建一個模塊並在您的功能中寫入此功能。並添加訂單到收藏。
$collection->setOrder('price', 'DESC');
public function getRelatedProductCollection()
{
$collection = $this->getLinkInstance()->useRelatedLinks()
->getProductCollection()
->setIsStrongMode();
$collection->setProduct($this);
$collection->setOrder('price', 'DESC');
return $collection;
}
您需要擴展這個模塊Mage_Catalog_Model_Product並修改該功能
+0
感謝它工作:) – user3540304 2014-10-06 06:45:12
0
轉到/應用/代碼/核心/法師/目錄/型號/路徑和Product.php
添加下面的代碼public function getRelatedProductCollection()
{
$collection = $this->getLinkInstance()->useRelatedLinks()
->getProductCollection()
->setIsStrongMode();
$collection->setProduct($this);
$collection->setOrder('price', 'DESC');
return $collection;
}
您也可以將此用於體重。只需寫'重量'來代替'價格'。 升序只需寫'ASC'代替'DESC'。
相關問題
- 1. Magento:按價格排序捆綁產品
- 2. 如何按產品價格排序Magento產品列表?
- 3. Magento - 按產品編號排序產品
- 4. Magento ver。 1.9.1.0:按數量和價格排序產品
- 5. Magento負面產品價格
- 6. Magento更新產品價格
- 7. Magento團隊價格與配置產品相關的簡單產品
- 8. Magento - 更新主要產品價格以包含所選相關產品?
- 9. 如何獲得我的相關產品的價格在Magento
- 10. 按產品排序產品
- 11. 銷售與相關價格的產品
- 12. 在Magento中按名稱排序產品
- 13. Magento:按屬性排序產品位置
- 14. Magento產品排序產品分類
- 15. Magento相關產品選項
- 16. Magento相關產品Sidebar
- 17. Magento:1.7 - 相同的產品有不同的價格基於magento
- 18. Magento的:相關產品轉移到相關產品
- 19. Magento按產品類型排序產品列表
- 20. 排序新產品magento
- 21. Magento:排序產品集合
- 22. 按價格過濾產品
- 23. 排序的相關產品不工作在Magento 1.6
- 24. woocommerce購物車頁面顯示產品按產品價格排序
- 25. Magento的產品取屬性需要排序按降序排序
- 26. 我需要按價格排序,然後按相同價格按時間排序多維相關數組
- 27. 顯示相關產品,從網格中排除當前產品
- 28. Magento得到的價格特色產品
- 29. Magento Bundle產品缺少價格字段
- 30. Magento可配置產品價格
到目前爲止你有什麼代碼... – Ashley 2014-10-03 14:44:28