shopping cart - Magento howto fetch / change / overwrite the totals.phtml calculation? -
i had added product calculated 2 attributes , uses own calculated price. problem had rewrite grandtotal , subtotal calculation... example overwritting stuff. i hope here @stackoverflow magento guru had solved problem :-) i had changed /app/design/frontend/default/gutlauf/template/checkout/cart/item/ default.phtml layout of cart items done. but have problem /app/design/frontend/default/gutlauf/template/checkout/cart/ totals.phtml <table id="shopping-cart-totals-table"> <col /> <col width="1" /> <tfoot> <?php echo $this->rendertotals('footer'); ?> </tfoot> <tbody> <?php echo $this->rendertotals(); ?> </tbody> </table> how can own calculation ? figured out blocks tax/checkout_grandtotal tax/checkout_subtotal tax/checkout_tax for example /app/design/frontend/default/gutlauf/template/tax/checkout/grandtotal.phtml <?php echo $this-...