Plugin Directory

Changeset 2647715


Ignore:
Timestamp:
12/22/2021 09:28:23 AM (4 years ago)
Author:
shinystat
Message:

Update timestamp for cart changes when it is empty.

Location:
shinystat-analytics/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • shinystat-analytics/trunk/README.txt

    r2580341 r2647715  
    22Contributors: shinystat
    33Donate link: http://www.shinystat.com/
    4 Tags: analytics, statistics, tracking, stats, conversions, counter, engagement, recommendation, web analytics, marketing automation, ecommerce, ecommerce tracking, javascript error tracking, surveys, artificial intelligence
     4Tags: analytics, statistics, counter, tracking, stats, conversions, engagement, recommendation, web analytics, marketing automation, ecommerce, ecommerce tracking, javascript error tracking, surveys, artificial intelligence
    55Requires at least: 3.1.0
    66Tested up to: 5.8
    7 Stable tag: 1.0.7
     7Stable tag: 1.0.8
    88Requires PHP: 5.6 or higher
    99License: GPLv2 or later
     
    8484* Compatibility with wp-rocket plugin
    8585
     86= 1.0.8 =
     87* Fix timestamp update when cart is empty in get_cart_content js function
     88
     89
    8690== Upgrade Notice ==
    8791
     
    110114Compatibility with wp-rocket plugin
    111115
     116= 1.0.8 =
     117* Fix timestamp update when cart is empty in get_cart_content js function
     118
    112119== Screenshots ==
    113120
  • shinystat-analytics/trunk/includes/class-shinystat-analytics.php

    r2465869 r2647715  
    7070            $this->version = SHINYSTAT_ANALYTICS_VERSION;
    7171        } else {
    72             $this->version = '1.0.7';
     72            $this->version = '1.0.8';
    7373        }
    7474        $this->plugin_name = 'shinystat-analytics';
  • shinystat-analytics/trunk/public/class-shinystat-analytics-public.php

    r2465869 r2647715  
    257257                        set_cart_content: function(cart_content) {
    258258
    259                             if (!!shn_engage.cart_content.item_count &&
     259                            if (!!shn_engage.cart_content &&
     260                                typeof(shn_engage.cart_content.item_count) !== "undefined" &&
     261                                    shn_engage.cart_content.item_count != null &&
    260262                                shn_engage.cart_content.item_count != cart_content.item_count) {
    261263                               
  • shinystat-analytics/trunk/shinystat-analytics.php

    r2465869 r2647715  
    1717 * Plugin URI:        https://wordpress.org/plugins/shinystat-analytics/
    1818 * Description:       Activate the plugin and start to use ShinyStat Web Analytics and On-site Marketing Automation tools.
    19  * Version:           1.0.7
     19 * Version:           1.0.8
    2020 * Author:            ShinyStat
    2121 * Author URI:        https://www.shinystat.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'SHINYSTAT_ANALYTICS_VERSION', '1.0.7' );
     38define( 'SHINYSTAT_ANALYTICS_VERSION', '1.0.8' );
    3939
    4040/**
Note: See TracChangeset for help on using the changeset viewer.