Make minimum price in shopping cart Magento - magento

Everywhere I see, can't find any info about it.
I need that people who adding to cart product ±20eur, can't process checkout, because shopping cart need to be ±50 eur. How to do this?

Configuration > Sales > Minimum Order Amount
Setting that should do the trick.

Related

Magento product custom options, show discount in cart

i have a problem with my magento cms. On some of my products, i have added a custom option, with a dropdown. All the options in the dropdown gives 20% discount, and the discount is reduced from the price in the shopping cart, but i want the discount showed in the cart, like it does when a coupon is used. How can i do that?
I think you need to start using configurable products to adjust prices on options. You can easily solve this issue if you use configurable products and know some Magento programming.

Magento shopping cart rule issue

When i apply shopping cart rule on cart in which cart item have less amount then coupon amount then grant total amount goes into negative value.
I have try to debug the issue but not succeed. Can you guys help me out how can i resolve the issue.
Mangeto 1.6.2
There is some tax calculation issue in the magneto 1.6. So its calculating the wrong amount during checkout. Things are working fine after changes GST calculation "Apply Customer Tax" - Before Discount as shown in http://screencast.com/t/UHtJtYZiLa

In Magento how to get the regular price of each product that include tax in the shopping cart?

I use this line to get the regular price of the product item in the shopping cart,
$this->helper('checkout')->formatPrice($_item->getProduct()->getPrice());
But I actually want to get the regular price include the tax, any idea how I can get it?
Something like this?
Mage::helper('tax')->getPrice($_item->getProduct(), $_item->getProduct()->getPrice());
See also Magento get price including tax in a none-template file

Magento: Fixed Amount Discount For Whole Cart For Percentage?

It says on the Magento website that the 'fixed amount discount for whole cart' applies a percentage discount to the whole cart.
This is not the case. For instance, if I type in 10, the whole cart value will be reduced by £10/$10.
Is there any way to apply discount percentage to the whole cart?
I know I can apply a percentage discount to each unit in the basket, but I want to be able to provide a coupon code to reduce the entire cart by x%, not the pre-VAT product prices.
I'm using 1.7.0.2
EDIT:
I think it will be useful to provide an example of what I'm trying to achieve. So, I want to be able to provide people with a coupon code for 15% off the total cart price, after all other discounts have been applied.
For instance, there is currently an offer for 3 items for £22. I want to then reduce the total cart price by 15%, to £18.70.
Any help would be a godsend! Thanks in advance!
Check if "Stop Further Rules Processing" is set to "No".
If it set to "Yes", then rule applies only to the price of the first item in cart
This can be done by using simple steps. Just create a coupon at the admin panel by going to Promotions/Catalog Price Rules. Here click "Add New Rule" and give all the conditions and details. In the left side u can see option "Actions"...
Here you can apply the rule as discount by percentage of fixed value and u can give there ur discount value of 15%. If u dont know of creating coupons in magento, go through this link http://www.magentocommerce.com/knowledge-base/entry/setting-a-coupon-code-to-your-promotions

Shopping Cart Price Rules change

I want to amend shopping cart price rules and to add a new field there - subtotal with discount. Any idea how to do it? In addition to subtotal, i want to have subtotal with discount too, so that i can give discounts based on discounted subtotal, and not on base subtotal.
Thanks in advance.
Here is a related answer. It is not possible without custom modification.
Without modification Magento does not allow this.
Shopping Cart Price Rules are applied on the cart, whereas a grand
total is often not calculated until the last stage of the checkout.
Two very different touch points. This would be exceedingly difficult
to do, and I can't even begin to think where you would start.
Related answer

Resources