skip to Main Content

Getting error while adding product to cart – Magento

I tried to add product programmatically. and i use below code $cart = Mage::getSingleton('checkout/cart'); $cart->init(); $paramater = array( 'product' => $product->getId(), 'related_product' => null, 'qty' => 1, 'form_key' => Mage::getSingleton('core/session')->getFormKey() ); $request = new Varien_Object(); $request->setData($paramater); $cart->addProduct($product, $request); $cart->save(); This…

VIEW QUESTION
Back To Top
Search