Plugin Directory

Changeset 3240213


Ignore:
Timestamp:
02/13/2025 03:36:52 PM (14 months ago)
Author:
usermaven
Message:

tagging version 1.1.5

Location:
usermaven
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • usermaven/tags/1.1.5/README.txt

    r3240210 r3240213  
    66Tested up to: 6.7.1
    77Requires PHP: 5.6
    8 Stable tag: 1.1.4
     8Stable tag: 1.1.5
    99License: Massachusetts Institute of Technology (MIT) license
    1010License URI: https://opensource.org/licenses/MIT
  • usermaven/tags/1.1.5/includes/class-usermaven-woocommerce.php

    r3240210 r3240213  
    10341034        error_log('track_order_submission early triggered for order: ' . $order_id);
    10351035
    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        }
    10371040
    10381041        if (!$order_id) {
  • usermaven/tags/1.1.5/includes/class-usermaven.php

    r3240210 r3240213  
    8181            $this->version = USERMAVEN_VERSION;
    8282        } else {
    83             $this->version = '1.1.4';
     83            $this->version = '1.1.5';
    8484        }
    8585        $this->plugin_name = 'usermaven';
  • usermaven/tags/1.1.5/usermaven.php

    r3240210 r3240213  
    1919 * Description:       The Easiest Website and Product Analytics Platform
    2020
    21  * Version:           1.1.4
     21 * Version:           1.1.5
    2222 * Author:            Usermaven
    2323 * Author URI:        https://usermaven.com/
     
    3838 * Rename this for your plugin and update it as you release new versions.
    3939 */
    40 define( 'USERMAVEN_VERSION', '1.1.4' );
     40define( 'USERMAVEN_VERSION', '1.1.5' );
    4141
    4242/**
  • usermaven/trunk/README.txt

    r3240210 r3240213  
    66Tested up to: 6.7.1
    77Requires PHP: 5.6
    8 Stable tag: 1.1.4
     8Stable tag: 1.1.5
    99License: Massachusetts Institute of Technology (MIT) license
    1010License URI: https://opensource.org/licenses/MIT
  • usermaven/trunk/includes/class-usermaven-woocommerce.php

    r3240210 r3240213  
    10341034        error_log('track_order_submission early triggered for order: ' . $order_id);
    10351035
    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        }
    10371040
    10381041        if (!$order_id) {
  • usermaven/trunk/includes/class-usermaven.php

    r3240210 r3240213  
    8181            $this->version = USERMAVEN_VERSION;
    8282        } else {
    83             $this->version = '1.1.4';
     83            $this->version = '1.1.5';
    8484        }
    8585        $this->plugin_name = 'usermaven';
  • usermaven/trunk/usermaven.php

    r3240210 r3240213  
    1919 * Description:       The Easiest Website and Product Analytics Platform
    2020
    21  * Version:           1.1.4
     21 * Version:           1.1.5
    2222 * Author:            Usermaven
    2323 * Author URI:        https://usermaven.com/
     
    3838 * Rename this for your plugin and update it as you release new versions.
    3939 */
    40 define( 'USERMAVEN_VERSION', '1.1.4' );
     40define( 'USERMAVEN_VERSION', '1.1.5' );
    4141
    4242/**
Note: See TracChangeset for help on using the changeset viewer.