Changeset 3240213
- Timestamp:
- 02/13/2025 03:36:52 PM (14 months ago)
- Location:
- usermaven
- Files:
-
- 8 edited
- 1 copied
-
tags/1.1.5 (copied) (copied from usermaven/trunk)
-
tags/1.1.5/README.txt (modified) (1 diff)
-
tags/1.1.5/includes/class-usermaven-woocommerce.php (modified) (1 diff)
-
tags/1.1.5/includes/class-usermaven.php (modified) (1 diff)
-
tags/1.1.5/usermaven.php (modified) (2 diffs)
-
trunk/README.txt (modified) (1 diff)
-
trunk/includes/class-usermaven-woocommerce.php (modified) (1 diff)
-
trunk/includes/class-usermaven.php (modified) (1 diff)
-
trunk/usermaven.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
usermaven/tags/1.1.5/README.txt
r3240210 r3240213 6 6 Tested up to: 6.7.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.1. 48 Stable tag: 1.1.5 9 9 License: Massachusetts Institute of Technology (MIT) license 10 10 License URI: https://opensource.org/licenses/MIT -
usermaven/tags/1.1.5/includes/class-usermaven-woocommerce.php
r3240210 r3240213 1034 1034 error_log('track_order_submission early triggered for order: ' . $order_id); 1035 1035 1036 WC()->session->set('usermaven_initiate_checkout_tracked', null); 1036 // Check if WC and session are available before trying to use them 1037 if (function_exists('WC') && WC() && WC()->session) { 1038 WC()->session->set('usermaven_initiate_checkout_tracked', null); 1039 } 1037 1040 1038 1041 if (!$order_id) { -
usermaven/tags/1.1.5/includes/class-usermaven.php
r3240210 r3240213 81 81 $this->version = USERMAVEN_VERSION; 82 82 } else { 83 $this->version = '1.1. 4';83 $this->version = '1.1.5'; 84 84 } 85 85 $this->plugin_name = 'usermaven'; -
usermaven/tags/1.1.5/usermaven.php
r3240210 r3240213 19 19 * Description: The Easiest Website and Product Analytics Platform 20 20 21 * Version: 1.1. 421 * Version: 1.1.5 22 22 * Author: Usermaven 23 23 * Author URI: https://usermaven.com/ … … 38 38 * Rename this for your plugin and update it as you release new versions. 39 39 */ 40 define( 'USERMAVEN_VERSION', '1.1. 4' );40 define( 'USERMAVEN_VERSION', '1.1.5' ); 41 41 42 42 /** -
usermaven/trunk/README.txt
r3240210 r3240213 6 6 Tested up to: 6.7.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.1. 48 Stable tag: 1.1.5 9 9 License: Massachusetts Institute of Technology (MIT) license 10 10 License URI: https://opensource.org/licenses/MIT -
usermaven/trunk/includes/class-usermaven-woocommerce.php
r3240210 r3240213 1034 1034 error_log('track_order_submission early triggered for order: ' . $order_id); 1035 1035 1036 WC()->session->set('usermaven_initiate_checkout_tracked', null); 1036 // Check if WC and session are available before trying to use them 1037 if (function_exists('WC') && WC() && WC()->session) { 1038 WC()->session->set('usermaven_initiate_checkout_tracked', null); 1039 } 1037 1040 1038 1041 if (!$order_id) { -
usermaven/trunk/includes/class-usermaven.php
r3240210 r3240213 81 81 $this->version = USERMAVEN_VERSION; 82 82 } else { 83 $this->version = '1.1. 4';83 $this->version = '1.1.5'; 84 84 } 85 85 $this->plugin_name = 'usermaven'; -
usermaven/trunk/usermaven.php
r3240210 r3240213 19 19 * Description: The Easiest Website and Product Analytics Platform 20 20 21 * Version: 1.1. 421 * Version: 1.1.5 22 22 * Author: Usermaven 23 23 * Author URI: https://usermaven.com/ … … 38 38 * Rename this for your plugin and update it as you release new versions. 39 39 */ 40 define( 'USERMAVEN_VERSION', '1.1. 4' );40 define( 'USERMAVEN_VERSION', '1.1.5' ); 41 41 42 42 /**
Note: See TracChangeset
for help on using the changeset viewer.