Hi guys, a quick question:
I'm adding a shopping cart to a website and my products should have an identification code:
now my code for the product is this:
I'm not sure how to recover the product_code variable.
Also is it possible to send and order form to the administrator after a user purchased an item?
Thanks always like usually - I'm pretty good with couch but is my first time with the cart.
I'm adding a shopping cart to a website and my products should have an identification code:
now my code for the product is this:
- Code: Select all
<cms:pp_product_form class="cart-form"> <input class="product-quantity" type="hidden" name="qty" min="1" step="1" value="1" title="Quantity"> <input class="product-code" type="hidden" name="code" value="<cms:show product_code />" title="Code"> <input class="button product-add" type="submit" value="Add to your shopping bag"> </cms:pp_product_form>
I'm not sure how to recover the product_code variable.
Also is it possible to send and order form to the administrator after a user purchased an item?
Thanks always like usually - I'm pretty good with couch but is my first time with the cart.