Plugin Directory

Changeset 2184297


Ignore:
Timestamp:
11/01/2019 09:08:02 AM (6 years ago)
Author:
soft8soft
Message:

New version 2.16.1

Location:
verge3d/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • verge3d/trunk/readme.txt

    r2182851 r2184297  
    55Tested up to: 5.2
    66Requires PHP: 5.6
    7 Stable tag: 2.16.0
     7Stable tag: 2.16.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6969== Changelog ==
    7070
     71= 2.16.1 =
     72* Support international attribute names in WooCommerce.
     73
    7174= 2.16 =
    7275* Add WooCommerce integration. Improve application upload interface.
  • verge3d/trunk/verge3d.php

    r2173543 r2184297  
    44Plugin URI: https://www.soft8soft.com/verge3d
    55Description: 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.0
     6Version: 2.16.1
    77Author: Soft8Soft LLC
    88Author URI: https://www.soft8soft.com
  • verge3d/trunk/woo_product.php

    r2173543 r2184297  
    9595    foreach ($_REQUEST as $key => $value) {
    9696        if (strpos($key, 'attribute_') !== false)
    97           $attrs[str_replace('attribute_', '', $key)] = $value;
     97          $attrs[urldecode(str_replace('attribute_', '', $key))] = $value;
    9898    }
    9999
     
    106106    // NOTE: using get_attributes() alone does not work
    107107    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);
    109109    }
    110110
Note: See TracChangeset for help on using the changeset viewer.