php - add product to zen cart website from external campaign site -


i having campaign site , find way customers selecting products on campaign site , send product information zen cart site , add items cart directly. therefore, customers no need select products again in zen cart site, chance,anyone know how do? please help!

seems cart accepts post data you'd have make post form on campaign site product ids hidden fields , submit button sending customer site; there's example here:

<form name="cart_quantity" action="http://www.company.com/shop/index.php?main_page=product_info&amp;action=add_product" method="post" enctype="multipart/form-data">  <input type="hidden" name="cart_quantity" value="1" />  <input type="hidden" name="products_id" value="1" />  <input type="image" src="yourimage.png" alt="add cart" title=" add cart " /> 

which found on thread:

http://www.zen-cart.com/showthread.php?96857-add-to-cart-link


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -