Changeset 3240210
- Timestamp:
- 02/13/2025 03:27:14 PM (14 months ago)
- Location:
- usermaven
- Files:
-
- 8 edited
- 1 copied
-
tags/1.1.4 (copied) (copied from usermaven/trunk)
-
tags/1.1.4/README.txt (modified) (1 diff)
-
tags/1.1.4/includes/class-usermaven-woocommerce.php (modified) (1 diff)
-
tags/1.1.4/includes/class-usermaven.php (modified) (1 diff)
-
tags/1.1.4/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.4/README.txt
r3240206 r3240210 6 6 Tested up to: 6.7.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.1. 38 Stable tag: 1.1.4 9 9 License: Massachusetts Institute of Technology (MIT) license 10 10 License URI: https://opensource.org/licenses/MIT -
usermaven/tags/1.1.4/includes/class-usermaven-woocommerce.php
r3240206 r3240210 187 187 */ 188 188 public function reset_initiate_checkout_tracking() { 189 WC()->session->__unset('usermaven_initiate_checkout_tracked'); 189 // Check if WC and session are available 190 if (function_exists('WC') && 191 WC() && 192 WC()->session && 193 WC()->session->get('usermaven_initiate_checkout_tracked') !== null) { 194 195 WC()->session->__unset('usermaven_initiate_checkout_tracked'); 196 } 190 197 } 191 198 -
usermaven/tags/1.1.4/includes/class-usermaven.php
r3240206 r3240210 81 81 $this->version = USERMAVEN_VERSION; 82 82 } else { 83 $this->version = '1.1. 3';83 $this->version = '1.1.4'; 84 84 } 85 85 $this->plugin_name = 'usermaven'; -
usermaven/tags/1.1.4/usermaven.php
r3240206 r3240210 19 19 * Description: The Easiest Website and Product Analytics Platform 20 20 21 * Version: 1.1. 321 * Version: 1.1.4 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. 3' );40 define( 'USERMAVEN_VERSION', '1.1.4' ); 41 41 42 42 /** -
usermaven/trunk/README.txt
r3240206 r3240210 6 6 Tested up to: 6.7.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.1. 38 Stable tag: 1.1.4 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
r3240206 r3240210 187 187 */ 188 188 public function reset_initiate_checkout_tracking() { 189 WC()->session->__unset('usermaven_initiate_checkout_tracked'); 189 // Check if WC and session are available 190 if (function_exists('WC') && 191 WC() && 192 WC()->session && 193 WC()->session->get('usermaven_initiate_checkout_tracked') !== null) { 194 195 WC()->session->__unset('usermaven_initiate_checkout_tracked'); 196 } 190 197 } 191 198 -
usermaven/trunk/includes/class-usermaven.php
r3240206 r3240210 81 81 $this->version = USERMAVEN_VERSION; 82 82 } else { 83 $this->version = '1.1. 3';83 $this->version = '1.1.4'; 84 84 } 85 85 $this->plugin_name = 'usermaven'; -
usermaven/trunk/usermaven.php
r3240206 r3240210 19 19 * Description: The Easiest Website and Product Analytics Platform 20 20 21 * Version: 1.1. 321 * Version: 1.1.4 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. 3' );40 define( 'USERMAVEN_VERSION', '1.1.4' ); 41 41 42 42 /**
Note: See TracChangeset
for help on using the changeset viewer.