Magento - price rule "buy 2 for price X" - magento

How can make the following rule.
Product: T.Shirts comes in 5 colours and in 5 sizes. It is set up as a configurable product.
Buy one for 120.-
Buy any 2 for 200.-
With buying 2 I mean not just buying 2 in color red, and size Large. It should also work when you buy 1 red/large, 1 blue/small etc.
Is there a way to set it up without buying an extension? I work on a Magento 1.9.2.3

First go to admin->manage product and open any product for that you want to set this functionality.
Magento called "Tier price" to this functionality.
after open product there is price tab on left side go to it.
There is Tire price section so click on "add Tier" and fill all data.
you set Tier price.
Done.

Related

Magento Qty Increments

Basically all my products in magento are single units, however everything is sold in packs say 10 units to a pack. Theres the Enable Qty Increments on the product options in Magento and then you enter the Qty increments, which works without problems. However by default when you go to the product on the front end, hit add to cart it tries to add just 1 unit not the minimum of 10 is there a way, when you hit add to cart it adds the minimum qty of 10 rather than 1?
I know this is a while after you posted the problem & you probably have a fix already..
We are looking at this problem ourselves.. & have an issue with Bundled products not allowing us to add more than one instance of the product on each page.. hard to explain..
What I am thinking to do is remove the quantity box from the actual product.. Customers can select in a drop down if they want packs of 5 - 10 - or singles.. if they require odd numbers they can adjust the number still in the checkout..
does that all make sense..
Add to cart & Qty box are on the products.phtml page i think... I am still looking at all my options though.. Setting up a selection of Grouped products at the moment..
Just a passing suggestion ;)
Edit.. // What we have done as a final solution.. Use // Promotions /
Shopping Cart Rules.. You can make specific rules for Bulk categories
& Products in set numbers.. This will be a lot easier for our staff to
manage.. just drop requested products into a category called "bulk"
..wish I had thought of it earlier :)
In Admin panel go to
System >> Configuration >> Catalog >> Inventory >> Product Stock Options and set Qty Increments to what you want.
Magento provides Bundled Products to achieve such sell of products in packets.
Create a Bundle Product and follow these steps at Bundled Items tab in product edit form
Add New Option
Provide Title, select input type checkbox or multiselect and set Is Required to Yes
Search your product in below grid and add this product providing "Qty to add" to 10
Add selected product to option and then save product.

Apply custom option price once regardless of quantity

I need to sell business cards in Magento. If the customer wants to use metallic ink (gold or silver) then I need to add $60 to the order, regardless of the quantity. I currently have Metallic Ink as a custom option, but Magento applies the $60 to each item. So if they order 100 business cards (which costs $25) there's an extra $1,500 added, making the total cost $1,525. The cost should be $85. How can I do this?
I've found Magento extensions that can do this, but one is $135 and one is $165. That seems a bit ridiculous to accomplish something that should be so simple for an online store.
Why don't you create an option for 100 cards, 250 cards, 500 cards etc and not allow the user to input the product qty but select it just like the ink option. This would stop people from ordering random number of cards like 37! Your problem is that magento takes the inputted qty and multiplies it by price (including options). If you remove the qty field (i.e so it always 1 when they click add to basket) and make the qty an option it allows for control over order volumes, discounts and surcharges like you are trying to achieve for free. Otherwise the quoted module prices seem very reasonable...
I would;
Create custom option for qty of cards with fixed prices for each
band.
Custom option for ink type with fixed price.
Remove or hide the
qty field on product page and cart.

How to sell product with discount per box in Magento?

Is there a way to sell “a box” of some product using different prices?
I guess it would be something like this http://www.magentocommerce.com/knowledge-base/entry/setting-the-unit-price/, but this option doesnt appear in the Community Edition.
For example: 1 box = 6 items = 10% off
I tried to use tier prices, but the discount for the 7th unit cant be the same, it should be the regular price.
I also tried to use configurable product, but I can’t have a good inventory control, as it will be different products (one for box, and other for single) - like they did here.
An hypothetical situation would be..
A bottle of wine for USD 10,00.
2 bottles for USD 20,00
6 bottles (a box) for USD 55
7 bottles (a box + 1 alone): USD 65 (55+10)
Any ideas to make it possible?
Thank you very much.
i am sure that you will achieve this scenario with help of bundle product
you can check detail with Document LINK
And also you can apply discount for bundle product. when you are creating product from admin
let me know if i can help you more.

Magento 1.7 - Getting a price rule to trigger with bundle contents

In our Magento 1.7.0.2 store, we have a bundle product which contains 3 simple products which are checkbox selectable.
So a customer can choose any combination of the individual simple products, 2 products or all 3 and add to cart all from the 1 bundle page.
We want to add a shopping cart price rule which says if all 3 simple products are chosen, then apply a percentage discount. 'Buy all 3 together and save 10%' type of thing.
Seems simple enough, but we can't get the rules to trigger on an SKU match, even if we simply check for the presence of 1 of the simple product SKUs in the cart and even if we chose a 'contains' match which should be less fussy.
Is there a reason that this rule wouldn't work with a bundle? And if there's an issue can anyone recommend a workaround please?
thanks,
James
We sorted this by using a condition for "product type" and "cart price" rules to look for the specific price of all 3 items added.
It's a bit of a fudge, but the end results are the same.

magento create a very special configurable product - football team

I need on Magento 1.7 to let the user choose attributes for each quantity in a configurable product.
The Example:
I want to order 11 football shirt for my football team.
i need to select size and write the player's name for each shirt in the product page like the image above
If the solution need to set "11" as default quantity, there's no problem
What i need is to have attributes repeated 11 time as quantity.
Is it possible?
How to?
this can easily be done in your theme; use the file
app/design/frontend/base/default/template/catalog/product/view/type/options/configurable.phtml
Hook in at
foreach($_attributes as $_attribute):
and change how the item is displayed (display it several times, for example).
Afterwards, you need to modify the javascript-function below that alle products are added to cart. You can find an example how to mass-add products here:
http://www.magentocommerce.com/boards/viewthread/9797/
Ask if you need more advice.

Resources