<?php
foreach($this->getTotals() as $total)
{
if ($total->getCode() == 'subtotal')
{
$subtotal = $total->getValue();
break;
}
}
echo $subtotal;
?>
¿Hay alguna forma de obtener el subtotal directamente?Magento Pago y envío: Obtenga el valor de subtotal sin iterar
Parece haber una diferencia importante entre esto y la respuesta a continuación. $ this-> getQuote() -> getSubtotal() does no incluye impuestos, pero $ totals = Mage :: getSingleton ('checkout/cart') -> getQuote() -> getTotals(); $ totals ["subtotal"] -> getValue(); incluye impuesto – Dom