Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

$this->renderTotals() which renders block?

Tags:

magento

Hello (sorry for my english)

The file /app/design/frontend/my-theme/default/template/checkout/cart/totals.phtml has the command:

    <tbody>
        <?php echo $this->renderTotals(); ?>
    </tbody>

In my theme, not charge the purchase price in the shopping cart at: ... mystore.com / checkout / cart /

$this->renderTotals() renders which block?

like image 419
Jus Avatar asked May 15 '13 20:05

Jus


1 Answers

I just spent an hour searching for this myself. The .phtml files that get called by this function are inside tax/checkout.

For instance, to change the "Grand Total" edit the file:

/app/design/frontend/yourtheme/default/template/tax/checkout/grandtotal.phtml
like image 176
x1sc0 Avatar answered Oct 19 '22 16:10

x1sc0