Changeset 2647715
- Timestamp:
- 12/22/2021 09:28:23 AM (4 years ago)
- Location:
- shinystat-analytics/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (3 diffs)
-
includes/class-shinystat-analytics.php (modified) (1 diff)
-
public/class-shinystat-analytics-public.php (modified) (1 diff)
-
shinystat-analytics.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shinystat-analytics/trunk/README.txt
r2580341 r2647715 2 2 Contributors: shinystat 3 3 Donate 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 intelligence4 Tags: analytics, statistics, counter, tracking, stats, conversions, engagement, recommendation, web analytics, marketing automation, ecommerce, ecommerce tracking, javascript error tracking, surveys, artificial intelligence 5 5 Requires at least: 3.1.0 6 6 Tested up to: 5.8 7 Stable tag: 1.0. 77 Stable tag: 1.0.8 8 8 Requires PHP: 5.6 or higher 9 9 License: GPLv2 or later … … 84 84 * Compatibility with wp-rocket plugin 85 85 86 = 1.0.8 = 87 * Fix timestamp update when cart is empty in get_cart_content js function 88 89 86 90 == Upgrade Notice == 87 91 … … 110 114 Compatibility with wp-rocket plugin 111 115 116 = 1.0.8 = 117 * Fix timestamp update when cart is empty in get_cart_content js function 118 112 119 == Screenshots == 113 120 -
shinystat-analytics/trunk/includes/class-shinystat-analytics.php
r2465869 r2647715 70 70 $this->version = SHINYSTAT_ANALYTICS_VERSION; 71 71 } else { 72 $this->version = '1.0. 7';72 $this->version = '1.0.8'; 73 73 } 74 74 $this->plugin_name = 'shinystat-analytics'; -
shinystat-analytics/trunk/public/class-shinystat-analytics-public.php
r2465869 r2647715 257 257 set_cart_content: function(cart_content) { 258 258 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 && 260 262 shn_engage.cart_content.item_count != cart_content.item_count) { 261 263 -
shinystat-analytics/trunk/shinystat-analytics.php
r2465869 r2647715 17 17 * Plugin URI: https://wordpress.org/plugins/shinystat-analytics/ 18 18 * Description: Activate the plugin and start to use ShinyStat Web Analytics and On-site Marketing Automation tools. 19 * Version: 1.0. 719 * Version: 1.0.8 20 20 * Author: ShinyStat 21 21 * Author URI: https://www.shinystat.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'SHINYSTAT_ANALYTICS_VERSION', '1.0. 7' );38 define( 'SHINYSTAT_ANALYTICS_VERSION', '1.0.8' ); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.