Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
v:2.0:products [2019/09/25 14:57] – [Subscriptions within bundled products] marija | v: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 [[# | + | 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 [[# |
+ | ===== Cart Limits ===== | ||
+ | |||
+ | A Foxy cart is currently limited to a maximum of 250 products in a single transaction, | ||
===== Product Grouping, Bundling, Ensembles ===== | ===== Product Grouping, Bundling, Ensembles ===== | ||
Line 60: | Line 63: | ||
You can tell FoxyCart that a product should be attached to another product by using the product option '' | You can tell FoxyCart that a product should be attached to another product by using the product option '' | ||
- | === Example | + | === Examples |
+ | == Link example | ||
<code html> | <code html> | ||
- | | + | <a href=" |
+ | </ | ||
+ | |||
+ | == Form Example == | ||
+ | <code html> | ||
+ | <form action=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | == Form example with optional child == | ||
+ | This example is an extension of the basic form example above, but allows for the customer to check a checkbox for whether they want to also add the child product or not. | ||
+ | <code html> | ||
+ | <form action=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | <input type=" | ||
+ | < | ||
+ | < | ||
+ | <input type=" | ||
+ | </form> | ||
</ | </ | ||
Line 86: | Line 120: | ||
==== Adding Multiple Products without Parent/ | ==== Adding Multiple Products without Parent/ | ||
- | 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/ | + | 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/ |
<code html> | <code html> | ||
- | <form action=" | + | <form action=" |
<input type=" | <input type=" | ||
<input type=" | <input type=" | ||
Line 96: | Line 130: | ||
<input type=" | <input type=" | ||
</ | </ | ||
+ | </ | ||
+ | |||
+ | Here's a link add-to-cart example: | ||
+ | <code html> | ||
+ | https:// | ||
</ | </ | ||
===== What About Security? ===== | ===== What About Security? ===== |