Magento coupon code for multiple time use until offer value zero - magento

I need a coupon code in magento. But the condition is one user can use the code more then one time. But cant't get more discount then code discount amount.
Like admin create a coupon code of $100 fixed amount. But my first order total $70. So if I use this code I will get $70 discount. For next when I use same code, I want $30 discount. That process will go until I get full amount($100) of discount.
Is that possible in magento?

Related

Why do tax and subtotal equal 0 in Magento when a customer with a coupon code adds a bundle to their cart?

If a customer is logged in and chooses a bundle product and puts it into their shopping cart, everything is okay. All Taxes and Subtotals are included if I look into the invoice.
A special customer has a 5% discount of every product (via a shopping cart rule) and chooses a bundle product and put its into the shopping cart. Again, everything is okay.
But if the special customer adds a coupon code (about 20€), the tax and the subtotal equals 0 and the price is not correct. It equals something magical.
Change the variable data type from int to float. You are likely using Data Type integers, which can not represent decimal places (e.g .0001). Therefore, your numbers are being rounded down and changing results. Hope this helps, if not, please post your code so we can actually help rather than making assumptions.

disable two discounts in magento 1.8.1

I created a Shopping Rule condition wherein my customers with products worth more than $50 in their cart is given 10% discount automatically.
Now, if the same user have a coupon code for 10% and he applies it, gets another 10% discount. This is a strict No.
I'm testing magento and wondering if anyone has a solution to add a condition to check the discounts be applied only once and not twice?
Magento default provide this type of functionality just check image
Let me know if you have any query

Magento percentage discount coupon codes not working after moving servers

Since moving our Magento store from Hostgator to Rackspace the percentage coupon codes are no longer applying the discount. When you enter a coupon code it says the coupon code was applied but no discount is given. Curiously, if you change it from a percentage discount to a fixed amount the discount is applied.
I have made no changes to these coupon codes. All I have done is move the website from Hostgator to Rackspace. I cannot, for the life of me, figure our why percentage coupon codes would be affected while others would not.
Help!
install a cronjob to calll cron.php every 5 minutes!
Because the price of an active rule would be joined via sql...or call 'save and apply rule' from adminhtml

Magento Shopping Cart Rules Buy X get 10% off everything

I'm having some problems getting my Magento Cart Rules to apply.
What I am trying to do is encourage users to purchase gift cards, so if you purchase a gift card you get 10% off the entire transaction assuming you purchase 2 or more items (including the gift card).
This is what I am using at the moment:
In Conditions
If ALL of these conditions are TRUE :
Total Items Quantity equals or greater than 2
If an item is FOUND in the cart with ANY of these conditions true:
SKU is 7667 (Gift Card)
In Actions
Apply Fixed amount discount for whole cart
Discount Amount 10
All the rest are as default.
Any help would be greatly appreciated
Your conditions seem to be correct. But in actions you have defined a fixed amount discount instead of a percent discount.
In Actions:
Apply Percent of product price discount
Discount Amount 10
Also you have to keep in mind that this way someone could simply put 2 giftcards in his cart to get the discount. You should add another rule check for an item where SKU IS NOT 7667.

Magento - How can I add a non-taxable fee to a taxable product?

We are using Magento EE 1.12. We have associated fees with individual products that cannot be taxed, however the product itself can be. The desired solution will be similar to a custom option where the fee is included on the same line item as the product and included in the product's price and therefore in the order subtotal. The only problem with a custom option is that the fee is taxed along with the product.
We've gone through several scenarios but I think the most likely solution is to use a custom option, but after the tax has been calculated we will reduce the tax to the correct amount. We tax on the subtotal and shipping. We will have access to the amount of fees so we can get the tax on that total and reduce the order tax amount.
Does this seem like a good solution? Does anyone have other ideas?
Make it a bundle product, and put in a product which is not taxable.

Resources