Changeset 2184297
- Timestamp:
- 11/01/2019 09:08:02 AM (6 years ago)
- Location:
- verge3d/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
verge3d.php (modified) (1 diff)
-
woo_product.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
verge3d/trunk/readme.txt
r2182851 r2184297 5 5 Tested up to: 5.2 6 6 Requires PHP: 5.6 7 Stable tag: 2.16. 07 Stable tag: 2.16.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 69 69 == Changelog == 70 70 71 = 2.16.1 = 72 * Support international attribute names in WooCommerce. 73 71 74 = 2.16 = 72 75 * Add WooCommerce integration. Improve application upload interface. -
verge3d/trunk/verge3d.php
r2173543 r2184297 4 4 Plugin URI: https://www.soft8soft.com/verge3d 5 5 Description: Verge3D is the most artist-friendly toolkit for creating interactive web-based experiences. It can be used to create product configurators, 3D presentations, online stores, e-learning apps, 3D portfolios, browser games and more. 6 Version: 2.16. 06 Version: 2.16.1 7 7 Author: Soft8Soft LLC 8 8 Author URI: https://www.soft8soft.com -
verge3d/trunk/woo_product.php
r2173543 r2184297 95 95 foreach ($_REQUEST as $key => $value) { 96 96 if (strpos($key, 'attribute_') !== false) 97 $attrs[ str_replace('attribute_', '', $key)] = $value;97 $attrs[urldecode(str_replace('attribute_', '', $key))] = $value; 98 98 } 99 99 … … 106 106 // NOTE: using get_attributes() alone does not work 107 107 foreach ($product->get_attributes() as $attr_key => $attr_value) { 108 $attrs[ $attr_key] = $product->get_attribute($attr_key);108 $attrs[urldecode($attr_key)] = $product->get_attribute($attr_key); 109 109 } 110 110
Note: See TracChangeset
for help on using the changeset viewer.