add product to cart in woocommerce from outside WordPress

i’ve figured out that is possible to add a product to cart with these lines:

global $woocommerce;
$woocommerce->cart->add_to_cart($product_id);

Read More

My question is, how to add a product to cart from outside? I have a simple php site, just want to delegate the sales to wordpress/woocommerce.
Can i do it with the Api?
Can you point me in th right direction?

Related posts

1 comment

Comments are closed.