Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Thanks in advance.

how can i deduct some discount price from subtotal in view cart page by code, actually i want to give discount on fly to the customer who is logged in and has purchased some product.

-Jitendra..

share|improve this question

2 Answers

up vote 0 down vote accepted

Create a shopping cart price rule with:

Customer groups: Everything except NOT LOGGED IN
Coupon code: none
Conditions:
    Product Subselection:
        Total quantity equals or greater than 1 for ANY:
         Sku = yoursku
         Sku = anothersku
Actions:
    Apply fixed amount discount
    Discount Amount: $X

Please let me know if that matches your situation, or clarify the conditions for the discount.

Hope that helps!

Thanks, Joe

share|improve this answer
1  
Thanks Joe, you are right somehow but my requirement is slightly different, i want to deduct some price(discount price) from the subtotal this price will be specific for the specific user in my store, so i have decided to deduct this discount value directly from the subtotal. Right now i am working on session.php for this but not lucky if u have any solution please suggest me, if i get any solutions i ll definitely put here as i am doing always. – Jitendra Nov 18 '10 at 5:29

its solved,

check the setGrandTotal in

app/code/core/Mage/Sales/Model/Quote/Address/Total/Grand.php

please override this file and make any changes...

-Thanks

Jitendra Dhobi.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.