Take a look at this picture. The Unit price is basically one of everything, but that is confusing to the users. Is there a work around for displaying the actual cost of the product as the unit cost here:
I'm running magento 1.4.0.1
Take a look at this picture. The Unit price is basically one of everything, but that is confusing to the users. Is there a work around for displaying the actual cost of the product as the unit cost here:
I'm running magento 1.4.0.1
Probably because that's what the old cart did, or someone's created a customization that's altered the functionality.
Find the
phtml
template responsible for rendering that cart lineRemove the
echo
call that's rendering the current priceReplace it with the code that's outputting the total, without multiplying by quantity, or making sure to redivide by the quantity to get the unit price
Alternately, just find the
phtml
template that's rendering the Unit Price column and remove it. Confusion avoided(in case it needs to be said, you'll be adding a custom theme
phtml
file to replace the file in the base template)