VirtueMart Forum

VirtueMart 2 + 3 + 4 => Product creation => Topic started by: braglin on April 09, 2013, 01:10:37 AM

Title: How to create a product List?
Post by: braglin on April 09, 2013, 01:10:37 AM
Hi, I want to know how to create a product with other products inside? For example:


Product Name:Party Night


And 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
Title: Re: How to create a product List?
Post by: PolishedGeek on April 09, 2013, 01:14:37 AM
Product builder - http://extensions.joomla.org/extensions/extension-specific/virtuemart-extensions/virtuemart-products-display/14915
Title: Re: How to create a product List?
Post by: braglin on April 09, 2013, 01:26:45 AM
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

Title: Re: How to create a product List?
Post by: PolishedGeek on April 09, 2013, 01:33:12 AM
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.
Title: Re: How to create a product List?
Post by: braglin on April 10, 2013, 14:10:09 PM
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!