News:

Looking for documentation? Take a look on our wiki

Main Menu

How to create a product List?

Started by braglin, April 09, 2013, 01:10:37 AM

Previous topic - Next topic

braglin

Hi, I want to know how to create a product with other products inside? For example:


Product Name:Party Night


  • Beer
  • Pizza
  • More Beer
  • etc

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

PolishedGeek

~ Deb Cinkus, CEO
Polished Geek, LLC   |    www.PolishedGeek.com

Creators of JoomLister - eBay Lister for Joomla!


PolishedGeek

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.
~ Deb Cinkus, CEO
Polished Geek, LLC   |    www.PolishedGeek.com

Creators of JoomLister - eBay Lister for Joomla!

braglin

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!