Hi, I want to know how to create a product with other products inside? For example:
Product Name:
Party NightAnd after add to cart,
show the itens instead of the Party Night product, so the user can change the quantity and remove an item if he want!
Anyone know how to do it? maybe a module or plugin?
Thanks in advanced,
Fabio
Product builder - http://extensions.joomla.org/extensions/extension-specific/virtuemart-extensions/virtuemart-products-display/14915
Quote from: PolishedGeek on April 09, 2013, 01:14:37 AM
Product builder - http://extensions.joomla.org/extensions/extension-specific/virtuemart-extensions/virtuemart-products-display/14915
Thank you my friend, do you know another way? This extension is very expansive for me now! :o
Sorry, I don't know of any better VM2 solution for under $100 USD that allows you to build products out of products. That ability is native in some other shopping carts like HikaShop, but that isn't free either.
Hi, I found a way:
<form method="post">
<span class="quantity-box">
<input class="quantity-input" type="text" name="quantity[]" value="1" />
</span>
<input type="hidden" name="option" value="com_virtuemart" />
<input type="hidden" name="view" value="cart" />
<input type="hidden" name="task" value="add" />
<input type="hidden" name="virtuemart_product_id[]" value="24" />
<span class="addtocart-button"><input class="addtocart-button" title="Adicionar a cesta" type="submit" name="addtocart" value="Adicionar a cesta" />
</span>
</form>
But I want to know how to display the product description and the price automatically! Anyone can help me?
Tks!