Magento – Price Update in Add to Cart Functionality

addtocartpricequantity

Can anyone tell me in magento, when we click Add to Cart button in product detail page, where and how is Product Price and Qty input multiplied and updated in shopping cart page Subtotal column. I want to customize the action for my custom pricing module.

Best Answer

The subtotal logic on the cart page is implemented in the below template file.

app/design/frontend/rwd/default/template/checkout/cart/item/default.phtml

Override this file into your local and modify it as per your requirement.

Related Topic