I'm trying to set up a shopping cart price rule to create a customer coupon code that accomplishes two goals: 1) 25% off all merchandise, and 2) free shipping if you buy more than one item. I know how to set up a coupon code that accomplishes either one of these functions, but I can't seem to combine the two into one code. The way I have it set up now it works fine for people who buy two or more items. (If total items quantity is greater than 1, then 25% off and free shipping.) The problem is that if a person buys only one item, they don't meet the condition of greater than 1 items in their cart, so the coupon code is rendered invalid. In that case they are charged for shipping (which is fine) but they don't get the 25% discount (which is not). I still want those one-item customers to get the discount, and pay for shipping. Is this even possible?