Plugin Directory

Changeset 2467639


Ignore:
Timestamp:
02/03/2021 06:03:11 AM (5 years ago)
Author:
soft8soft
Message:

New version 3.6.0

Location:
verge3d/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • verge3d/trunk/js/woo_product.js

    r2232779 r2467639  
    5050
    5151    var req = new XMLHttpRequest();
    52     req.open('POST', wc_add_to_cart_params.ajax_url);
     52    // registered in php via v3d_load_woo_scripts
     53    req.open('POST', v3d_woo_ajax_url);
    5354    req.send(formData);
    5455    req.addEventListener('load', function() {
  • verge3d/trunk/readme.txt

    r2427733 r2467639  
    55Tested up to: 5.2
    66Requires PHP: 5.6
    7 Stable tag: 3.5.0
     7Stable tag: 3.6.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6969== Changelog ==
    7070
     71= 3.6 =
     72* Fixed error with missing wc_add_to_cart_params structure
     73
    7174= 3.5 =
    7275* Verge3D 3.5 version bump.
  • verge3d/trunk/verge3d.php

    r2427733 r2467639  
    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: 3.5.0
     6Version: 3.6.0
    77Author: Soft8Soft LLC
    88Author URI: https://www.soft8soft.com
  • verge3d/trunk/woo_product.php

    r2341560 r2467639  
    33function v3d_load_woo_scripts() {
    44    wp_enqueue_script('v3d_admin', plugin_dir_url( __FILE__ ) . 'js/woo_product.js');
     5    wp_add_inline_script('v3d_admin', 'var v3d_woo_ajax_url="'.admin_url('admin-ajax.php').'"', 'before');
    56}
    67add_action('wp_enqueue_scripts', 'v3d_load_woo_scripts');
Note: See TracChangeset for help on using the changeset viewer.