Documentation You are here: start » v » 2.0 » products

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
v:2.0:products [2020/06/01 01:45] – [Adding child products] adamv:2.0:products [2024/04/02 14:30] (current) – [Advanced Products] adam
Line 49: Line 49:
  
 ==== Advanced Products ==== ==== Advanced Products ====
-You are limited only by your imagination when it comes to how you'd like your add-to-cart links or forms to function, and thus, how complex you want your products to be. There are a variety of options and parameters [[#a_complete_list_of_product_parameters|listed below]] as well as in [[.:cheat_sheet|the cheatsheet]]. If you need help just [[http://forum.foxycart.com/|ask on our forum]].+You are limited only by your imagination when it comes to how you'd like your add-to-cart links or forms to function, and thus, how complex you want your products to be. There are a variety of options and parameters [[#a_complete_list_of_product_parameters|listed below]] as well as in [[.:cheat_sheet|the cheatsheet]]. If you need help, please don't hesitate to [[https://foxy.io/contact|contact us]].
  
 +===== Cart Limits =====
 +
 +A Foxy cart is currently limited to a maximum of 250 products in a single transaction, and each product can have a maximum of 100 custom product options.
  
 ===== Product Grouping, Bundling, Ensembles ===== ===== Product Grouping, Bundling, Ensembles =====
Line 117: Line 120:
 ==== Adding Multiple Products without Parent/Child Relationships ==== ==== Adding Multiple Products without Parent/Child Relationships ====
  
-If you'd simply like to add multiple products to the cart at the same time, but //not// have those products be bundled or otherwise related as described above, that's totally doable. In this case, you would simply not use the parent/child relationship. In this form example, you will include all products within the same ''<form>'' tag and add the integer prefix (i.e. 1:, 2:, etc.) to each item you would like grouped. Here'an example:+If you'd simply like to add multiple products to the cart at the same time, but //not// have those products be bundled or otherwise related as described above, that's totally doable. In this case, you would simply not use the parent/child relationship. In this form example, you will include all products within the same ''<form>'' tag and add the integer prefix (i.e. 1:, 2:, etc.) to each item you would like grouped. Here'a form add-to-cart example:
  
 <code html> <code html>
-<form action="http://YOURDOMAIN.foxycart.com/cart" class="foxycart" method="post">+<form action="https://YOURDOMAIN.foxycart.com/cart" class="foxycart" method="post">
     <input type="hidden" name="name" value="Fancy Smartphone" />     <input type="hidden" name="name" value="Fancy Smartphone" />
     <input type="hidden" name="price" value="199.99" />     <input type="hidden" name="price" value="199.99" />
Line 127: Line 130:
     <input type="submit" value="Buy a Smartphone and a Leather Case!" />     <input type="submit" value="Buy a Smartphone and a Leather Case!" />
 </form> </form>
 +</code>
 +
 +Here's a link add-to-cart example:
 +<code html>
 +https://YOURDOMAIN.foxycart.com/cart?name=Fancy+Smartphone&price=199.99&2:name=Leather Case for Smartphone&2:price=9.99
 </code> </code>
 ===== What About Security? ===== ===== What About Security? =====

Site Tools