Call-back icon  Sales: Call 877.832.5289 (N America)|310.295.4144 (International)

Magento

eCommerce Software for Online Growth

Magento Forum

   
Display Discount total in sidebar Cart? 
 
paul@moodandmind.com
Member
 
Avatar
Total Posts:  57
Joined:  2008-01-13
 

I would like to display the Discount total in the sidebar cart like the Subtotal.

However, I’ve checked the cart .phtml and there is no recognizable script for getting the discount. It appears to just get the discount and grand total in one big lump.

So, I need to know what code I would use to show the discount in the sidebar cart just like the subtotal is shown.

To anyone who can help - it would be much appreciated!

 
Magento Community Magento Community
Magento Community
Magento Community
 
paul@moodandmind.com
Member
 
Avatar
Total Posts:  57
Joined:  2008-01-13
 

shameless bump

 
Magento Community Magento Community
Magento Community
Magento Community
 
paul@moodandmind.com
Member
 
Avatar
Total Posts:  57
Joined:  2008-01-13
 

No help?

 
Magento Community Magento Community
Magento Community
Magento Community
 
paul@moodandmind.com
Member
 
Avatar
Total Posts:  57
Joined:  2008-01-13
 

Anyone, Anyone?

 
Magento Community Magento Community
Magento Community
Magento Community
 
Quix
Jr. Member
 
Total Posts:  1
Joined:  2008-05-14
 

I too would like to know if it’s possible. Right now I only see Discount Codes on the Shopping Cart page.

 
Magento Community Magento Community
Magento Community
Magento Community
 
Georg Ringer
Member
 
Avatar
Total Posts:  58
Joined:  2008-07-04
Linz, Austria
 

This is very easy by adding this function to /app/code/core/Mage/Checkout/Block/Cart/Sidebar.php or using an overload

public function getDiscount() {
        $discount 
$this->getTotals();
            if (isset(
$discount['discount'])) {
                $d 
explode(',',$discount['discount']);    
                
$price $d[2]
                
                return 
$price;
            

            
            
return 0;
        
}

and in the sidebar.phtml something like

<strong>Gesamt:</strong<?php echo Mage::helper('core')->currency($this->getSubtotal()) ?><br />
                   <
strong>Rabatt:</strong<?php echo Mage::helper('core')->currency($this->getDiscount()) ?><br />
                   <
strong>Summe:</strong<?php echo Mage::helper('core')->currency($this->getSubtotal()+$this->getDiscount()) ?>

georg

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top
 
Sales: Call 877.832.5289 (North America) 310.295.4144 (International)
© Copyright 2008 Varien. Magento, eCommerce software, is a trademark of Irubin Consulting Inc. DBA Varien
Privacy Policy|Terms of Service
Magento Community Count
50101 users|474 users currently online|102233 forum posts