coupon code description magento on cart -
how fetch coupon code description shopping cart. magento shows coupon code "test001" applied.
i wondering how fetch description added in magento backend instead of message.
display message "coupon code "test001" has been applied, saved $100 happy shopping."
magento coupon description looking didn;t worked me .
try code .it works me
$rule = mage::getmodel('salesrule/rule')->getcollection() ->addfieldtofilter('code', '1234'); foreach ($rule $value) { $description = $value->getdescription(); print_r($description); }.
i put code in cart controller under addaction() function.
Comments
Post a Comment