This is page devoted to listing all the modules that I’ve made so that people don’t ask how to make the same types of things again.
Customer Input of 3-dimensional sizes
Specify available inch fractions: 1/4, 1/2, 1/8, 1/16, etc.
Attach custom dimensions to an order line item under “line_item_details” attribute
-
XML Base Pricing Logic Example:
<productLine line="20000">
<product sku="20000">
<condition type="range" attrib="width" value="0-33">
<condition type="eq" attrib="depth" value="1/2">
<condition type="range" attrib="sqft" value="0-99">$3.10</condition>
<condition type="range" attrib="sqft" value="100-199">$3.28</condition>
<condition type="range" attrib="sqft" value="200-249">$3.42</condition>
</condition>
<condition type="eq" attrib="depth" value="1">
<condition type="range" attrib="sqft" value="0-99">$3.10</condition>
<condition type="range" attrib="sqft" value="100-199">$3.28</condition>
<condition type="range" attrib="sqft" value="200-249">$3.42</condition>
</condition>
<condition type="eq" attrib="depth" value="2">
<condition type="range" attrib="sqft" value="0-99">$3.10</condition>
<condition type="range" attrib="sqft" value="100-199">$3.28</condition>
<condition type="range" attrib="sqft" value="200-249">$3.99</condition>
</condition>
</condition>
</product>
</productLine>