I want to add a product to cart programmatically. Also, I want to change the product price when added to cart.
Suppose, my product\'s price is $100. I wanted to cha
It is possible to set a customer specific price of a quote item. Hence, something like this should do it:
$quoteItem = $quote->addProduct($product, $qty);
$quoteItem->setCustomPrice($price);
// we need this since Magento 1.4
$quoteItem->setOriginalCustomPrice($price);
$quote->save();
Hope this helps...