Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamically Show Product Promotions On Product Page Magento

Tags:

php

magento

How can I get a collection of the promotions that are tied to a particular product.

like image 825
ajameswolf Avatar asked Dec 06 '13 05:12

ajameswolf


1 Answers

What you're looking for is one of these two methods. Chose one which suits you better:

  1. Mage_CatalogRule_Model_Resource_Rule::getRulesFromProduct()
  2. Mage_CatalogRule_Model_Resource_Rule::getRulesForProduct()
like image 110
vsushkov Avatar answered Oct 04 '22 21:10

vsushkov