This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // | |
| // Magento Convert Attributes | |
| // Author: Jeroen Schermer | |
| // Original Author: Michele Marcucci | |
| // Email: michele@simplicissimus.it | |
| // Script to convert a old Magento text attribute to a new one in dropdown format (useful to be used in navigation layer) | |
| // | |
| // Modified by mechanicalgux: | |
| // - automatic temporary attribute creation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Gravity Wiz // Gravity Forms // AJAX Population | |
| * | |
| * Populate one or many fields from a remote data source (only .csv files are currently supported) based on the selected value of a field on the form. | |
| * | |
| * Example: You have multiple brands of lumber. The lumber comes in different sizes. You can store each lumber brand and its corresponding length, width, and height in a spreadsheet (csv format) and then populate this data into separate length, width and height fields on the form when a lumber brand is selectd from a drop down field on the form. | |
| * | |
| * @version 1.2 | |
| * @author David Smith <david@gravitywiz.com>. Modified by Alan Peate <alan@magerage.co.uk> |