Plugin Directory

Changeset 3240210


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

tagging version 1.1.4

Location:
usermaven
Files:
8 edited
1 copied

Legend:

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

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

    r3240206 r3240210  
    187187     */
    188188    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        }
    190197    }
    191198
  • usermaven/tags/1.1.4/includes/class-usermaven.php

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

    r3240206 r3240210  
    1919 * Description:       The Easiest Website and Product Analytics Platform
    2020
    21  * Version:           1.1.3
     21 * Version:           1.1.4
    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.3' );
     40define( 'USERMAVEN_VERSION', '1.1.4' );
    4141
    4242/**
  • usermaven/trunk/README.txt

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

    r3240206 r3240210  
    187187     */
    188188    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        }
    190197    }
    191198
  • usermaven/trunk/includes/class-usermaven.php

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

    r3240206 r3240210  
    1919 * Description:       The Easiest Website and Product Analytics Platform
    2020
    21  * Version:           1.1.3
     21 * Version:           1.1.4
    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.3' );
     40define( 'USERMAVEN_VERSION', '1.1.4' );
    4141
    4242/**
Note: See TracChangeset for help on using the changeset viewer.