Changeset 2361149
- Timestamp:
- 08/14/2020 02:11:07 PM (6 years ago)
- Location:
- humcommerce
- Files:
-
- 2 added
- 12 edited
- 1 copied
-
tags/3.0.1 (copied) (copied from humcommerce/trunk)
-
tags/3.0.1/README.txt (modified) (3 diffs)
-
tags/3.0.1/admin/class-humcommerce-admin.php (modified) (1 diff)
-
tags/3.0.1/admin/class-magic-report.php (modified) (1 diff)
-
tags/3.0.1/admin/views/recording-email.php (modified) (1 diff)
-
tags/3.0.1/humcommerce.php (modified) (2 diffs)
-
tags/3.0.1/includes/class-humc-utils.php (added)
-
tags/3.0.1/includes/class-humcommerce.php (modified) (1 diff)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/class-humcommerce-admin.php (modified) (1 diff)
-
trunk/admin/class-magic-report.php (modified) (1 diff)
-
trunk/admin/views/recording-email.php (modified) (1 diff)
-
trunk/humcommerce.php (modified) (2 diffs)
-
trunk/includes/class-humc-utils.php (added)
-
trunk/includes/class-humcommerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
humcommerce/tags/3.0.1/README.txt
r2360765 r2361149 5 5 Tested up to: 5.5.0 6 6 Requires PHP: 5.6.0 7 Stable tag: 3.0. 07 Stable tag: 3.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 Seeing where people click and what error messages annoyed them is now possible with HumCommerce Magic. See customers who can't complete their purchase with session replays and figure out exactly why that sale didn’t happen. 18 18 19 [HumCommerce Magic](https://www.humcommerce.com/wo rdpress-analytics-plugin/?utm_source=wporg&utm_medium=link&utm_campaign=plugin&utm_content=readme) has advanced intelligence to identify and show you, where & why you lost a customer?19 [HumCommerce Magic](https://www.humcommerce.com/woocommerce-behaviour-analytics-plugin/?utm_source=wporg&utm_medium=link&utm_campaign=plugin&utm_content=readme) has advanced intelligence to identify and show you, where & why you lost a customer? 20 20 21 21 * Recordings feature gives you the ability to virtually see the users screen, to understand how people use your site. … … 94 94 == Changelog == 95 95 96 Ver 3.0.1 (14 Aug 2020) 97 * Fix : Price formatting in the email. 98 96 99 Ver 3.0.0 (14 Aug 2020) 97 100 * Feature : Be able to watch recommended session recordings from wordpress admin itself -
humcommerce/tags/3.0.1/admin/class-humcommerce-admin.php
r2360765 r2361149 276 276 } 277 277 } 278 if ( function_exists( 'wc_price' ) ) { 279 $revenue_lost = wc_price( $revenue_lost );280 } 278 279 $revenue_lost = \Humc_Utils::format_price( $revenue_lost ); 280 281 281 282 282 return array( -
humcommerce/tags/3.0.1/admin/class-magic-report.php
r2360765 r2361149 48 48 public function no_items() { 49 49 $time = wp_next_scheduled( 'wp_magic_fetch_cron_hook' ); 50 $date = gmdate( 'h:i A', $time ); 50 $remaining_time = ($time - time())/HOUR_IN_SECONDS; 51 $remaining_time = (int)$remaining_time > 0 ? (int)$remaining_time : 1; 51 52 ?> 52 53 <div style="text-align:center;"> 53 <h1>We have started recording and analyzing the recordings</h1>54 <h1>We are recording and analyzing the recordings.</h1> 54 55 <div class="humc-text"> 55 Just give it some time and we will send you mail tomorrow at <?php echo esc_html( $date ); ?>when56 Just give it some time and we will send you mail in approx <?php echo esc_html( $remaining_time ); ?> hours when 56 57 recordings are ready for you to see 57 58 </div> -
humcommerce/tags/3.0.1/admin/views/recording-email.php
r2360765 r2361149 15 15 <ul> 16 16 <?php foreach ( $summary as $line ) : ?> 17 <li><?php echo esc_html( $line ); ?></li>17 <li><?php echo wp_kses_post( $line ); ?></li> 18 18 <?php endforeach; ?> 19 19 </ul> -
humcommerce/tags/3.0.1/humcommerce.php
r2360765 r2361149 16 16 * Plugin URI: https://wordpress.org/plugins/humcommerce/ 17 17 * Description: HumCommerce WordPress plugin to Record, Analyze & Convert your visitors. 18 * Version: 3.0. 018 * Version: 3.0.1 19 19 * Author: HumCommerce 20 20 * Author URI: https://www.humcommerce.com … … 29 29 } 30 30 31 define( 'HUMCOMMERCE_VERSION', '3.0. 0' );31 define( 'HUMCOMMERCE_VERSION', '3.0.1' ); 32 32 33 33 if ( ! defined( 'HUMCOMMERCE_HOST' ) ) { -
humcommerce/tags/3.0.1/includes/class-humcommerce.php
r2360765 r2361149 125 125 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humcommerce-loader.php'; 126 126 127 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humc-utils.php'; 128 127 129 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-magic-api.php'; 128 130 -
humcommerce/trunk/README.txt
r2360765 r2361149 5 5 Tested up to: 5.5.0 6 6 Requires PHP: 5.6.0 7 Stable tag: 3.0. 07 Stable tag: 3.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 17 17 Seeing where people click and what error messages annoyed them is now possible with HumCommerce Magic. See customers who can't complete their purchase with session replays and figure out exactly why that sale didn’t happen. 18 18 19 [HumCommerce Magic](https://www.humcommerce.com/wo rdpress-analytics-plugin/?utm_source=wporg&utm_medium=link&utm_campaign=plugin&utm_content=readme) has advanced intelligence to identify and show you, where & why you lost a customer?19 [HumCommerce Magic](https://www.humcommerce.com/woocommerce-behaviour-analytics-plugin/?utm_source=wporg&utm_medium=link&utm_campaign=plugin&utm_content=readme) has advanced intelligence to identify and show you, where & why you lost a customer? 20 20 21 21 * Recordings feature gives you the ability to virtually see the users screen, to understand how people use your site. … … 94 94 == Changelog == 95 95 96 Ver 3.0.1 (14 Aug 2020) 97 * Fix : Price formatting in the email. 98 96 99 Ver 3.0.0 (14 Aug 2020) 97 100 * Feature : Be able to watch recommended session recordings from wordpress admin itself -
humcommerce/trunk/admin/class-humcommerce-admin.php
r2360765 r2361149 276 276 } 277 277 } 278 if ( function_exists( 'wc_price' ) ) { 279 $revenue_lost = wc_price( $revenue_lost );280 } 278 279 $revenue_lost = \Humc_Utils::format_price( $revenue_lost ); 280 281 281 282 282 return array( -
humcommerce/trunk/admin/class-magic-report.php
r2360765 r2361149 48 48 public function no_items() { 49 49 $time = wp_next_scheduled( 'wp_magic_fetch_cron_hook' ); 50 $date = gmdate( 'h:i A', $time ); 50 $remaining_time = ($time - time())/HOUR_IN_SECONDS; 51 $remaining_time = (int)$remaining_time > 0 ? (int)$remaining_time : 1; 51 52 ?> 52 53 <div style="text-align:center;"> 53 <h1>We have started recording and analyzing the recordings</h1>54 <h1>We are recording and analyzing the recordings.</h1> 54 55 <div class="humc-text"> 55 Just give it some time and we will send you mail tomorrow at <?php echo esc_html( $date ); ?>when56 Just give it some time and we will send you mail in approx <?php echo esc_html( $remaining_time ); ?> hours when 56 57 recordings are ready for you to see 57 58 </div> -
humcommerce/trunk/admin/views/recording-email.php
r2360765 r2361149 15 15 <ul> 16 16 <?php foreach ( $summary as $line ) : ?> 17 <li><?php echo esc_html( $line ); ?></li>17 <li><?php echo wp_kses_post( $line ); ?></li> 18 18 <?php endforeach; ?> 19 19 </ul> -
humcommerce/trunk/humcommerce.php
r2360765 r2361149 16 16 * Plugin URI: https://wordpress.org/plugins/humcommerce/ 17 17 * Description: HumCommerce WordPress plugin to Record, Analyze & Convert your visitors. 18 * Version: 3.0. 018 * Version: 3.0.1 19 19 * Author: HumCommerce 20 20 * Author URI: https://www.humcommerce.com … … 29 29 } 30 30 31 define( 'HUMCOMMERCE_VERSION', '3.0. 0' );31 define( 'HUMCOMMERCE_VERSION', '3.0.1' ); 32 32 33 33 if ( ! defined( 'HUMCOMMERCE_HOST' ) ) { -
humcommerce/trunk/includes/class-humcommerce.php
r2360765 r2361149 125 125 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humcommerce-loader.php'; 126 126 127 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humc-utils.php'; 128 127 129 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-magic-api.php'; 128 130
Note: See TracChangeset
for help on using the changeset viewer.