Changeset 2467639
- Timestamp:
- 02/03/2021 06:03:11 AM (5 years ago)
- Location:
- verge3d/trunk
- Files:
-
- 4 edited
-
js/woo_product.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
verge3d.php (modified) (1 diff)
-
woo_product.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
verge3d/trunk/js/woo_product.js
r2232779 r2467639 50 50 51 51 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); 53 54 req.send(formData); 54 55 req.addEventListener('load', function() { -
verge3d/trunk/readme.txt
r2427733 r2467639 5 5 Tested up to: 5.2 6 6 Requires PHP: 5.6 7 Stable tag: 3. 5.07 Stable tag: 3.6.0 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 = 3.6 = 72 * Fixed error with missing wc_add_to_cart_params structure 73 71 74 = 3.5 = 72 75 * Verge3D 3.5 version bump. -
verge3d/trunk/verge3d.php
r2427733 r2467639 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: 3. 5.06 Version: 3.6.0 7 7 Author: Soft8Soft LLC 8 8 Author URI: https://www.soft8soft.com -
verge3d/trunk/woo_product.php
r2341560 r2467639 3 3 function v3d_load_woo_scripts() { 4 4 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'); 5 6 } 6 7 add_action('wp_enqueue_scripts', 'v3d_load_woo_scripts');
Note: See TracChangeset
for help on using the changeset viewer.