VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: stanko91 on April 25, 2012, 18:41:49 PM

Title: Code for Add to cart
Post by: stanko91 on April 25, 2012, 18:41:49 PM
Hi guys, i have a problem... i changed my shop from hikashop to virtuemart:) Now my problem: I have a formular and after the fill out of it i want to put an articel in my cart. Now my question which helper do i have to load and whats to code to put something in the cart?


Sorry for my bad english:)
Title: Re: Code for Add to cart
Post by: stanko91 on April 26, 2012, 14:31:28 PM
do no one nows how i can put something in in my cart?
Title: Re: Code for Add to cart
Post by: andrey on April 28, 2012, 10:32:56 AM
The basic code it to get a cart and call add method:
$cart = VirtueMartCart::getCart();
$cart->add($virtuemart_product_ids);


See component/com_virtuemart/helpers/cart.php for details.