Magento 1.9 – Single Product with Multiple Add to Cart

addtocartmagento-1.9

I would like to have single items displayed in category without prices, once customer has clicked on product and the product view page is loaded, I would like multiple add to cart options. Something clean that would provide something like this…is there an extension maybe that could apply to each product I have?

Thanks for any help…

Red ADD TO CART (button)
Blue ADD TO CART (button)
GREEN ADD TO CART (button)

OR

20 COUNT ADD TO CART (button)
100 COUNT ADD TO CART (button)
1000 ADD TO CART (button)

Best Answer

For the color part I suggest to use the Custom Options in your Product configuration.

If your template don't allow to input the Qty for a product you can create own buttons in your template file where you can use $this->getSubmitUrl($_product) and add /qty/20 or /qty/100 etc behind the url.

Something like this also:

<form action="<?php echo $this->getSubmitUrl($_product); ?>/qty/20" method="post" id="product_addtocart_form_20">
    <button class="btn" type="submit">
        <span><?php echo $this->__('Add to Cart') ?></span>
    </button>
</form>
Related Topic