Plugin Directory

Changeset 2361149


Ignore:
Timestamp:
08/14/2020 02:11:07 PM (6 years ago)
Author:
humcommerce
Message:

releases 3.0.1 for timezone and price formatting related fixes

Location:
humcommerce
Files:
2 added
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • humcommerce/tags/3.0.1/README.txt

    r2360765 r2361149  
    55Tested up to: 5.5.0
    66Requires PHP: 5.6.0
    7 Stable tag: 3.0.0
     7Stable tag: 3.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1717Seeing 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.
    1818
    19  [HumCommerce Magic](https://www.humcommerce.com/wordpress-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?
    2020
    2121* Recordings feature gives you the ability to virtually see the users screen, to understand how people use your site.
     
    9494== Changelog ==
    9595
     96Ver 3.0.1 (14 Aug 2020)
     97* Fix : Price formatting in the email.
     98
    9699Ver 3.0.0 (14 Aug 2020)
    97100* Feature : Be able to watch recommended session recordings from wordpress admin itself
  • humcommerce/tags/3.0.1/admin/class-humcommerce-admin.php

    r2360765 r2361149  
    276276            }
    277277        }
    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
    281281
    282282        return array(
  • humcommerce/tags/3.0.1/admin/class-magic-report.php

    r2360765 r2361149  
    4848    public function no_items() {
    4949        $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;
    5152        ?>
    5253        <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>
    5455            <div class="humc-text">
    55                 Just give it some time and we will send you mail tomorrow at <?php echo esc_html( $date ); ?> when
     56                Just give it some time and we will send you mail in approx <?php echo esc_html( $remaining_time ); ?> hours when
    5657                recordings are ready for you to see
    5758            </div>
  • humcommerce/tags/3.0.1/admin/views/recording-email.php

    r2360765 r2361149  
    1515<ul>
    1616    <?php foreach ( $summary as $line ) : ?>
    17         <li><?php echo esc_html( $line ); ?></li>
     17        <li><?php echo wp_kses_post( $line ); ?></li>
    1818    <?php endforeach; ?>
    1919</ul>
  • humcommerce/tags/3.0.1/humcommerce.php

    r2360765 r2361149  
    1616 * Plugin URI:        https://wordpress.org/plugins/humcommerce/
    1717 * Description:       HumCommerce WordPress plugin to Record, Analyze & Convert your visitors.
    18  * Version:           3.0.0
     18 * Version:           3.0.1
    1919 * Author:            HumCommerce
    2020 * Author URI:        https://www.humcommerce.com
     
    2929}
    3030
    31 define( 'HUMCOMMERCE_VERSION', '3.0.0' );
     31define( 'HUMCOMMERCE_VERSION', '3.0.1' );
    3232
    3333if ( ! defined( 'HUMCOMMERCE_HOST' ) ) {
  • humcommerce/tags/3.0.1/includes/class-humcommerce.php

    r2360765 r2361149  
    125125        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humcommerce-loader.php';
    126126
     127        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humc-utils.php';
     128
    127129        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-magic-api.php';
    128130
  • humcommerce/trunk/README.txt

    r2360765 r2361149  
    55Tested up to: 5.5.0
    66Requires PHP: 5.6.0
    7 Stable tag: 3.0.0
     7Stable tag: 3.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1717Seeing 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.
    1818
    19  [HumCommerce Magic](https://www.humcommerce.com/wordpress-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?
    2020
    2121* Recordings feature gives you the ability to virtually see the users screen, to understand how people use your site.
     
    9494== Changelog ==
    9595
     96Ver 3.0.1 (14 Aug 2020)
     97* Fix : Price formatting in the email.
     98
    9699Ver 3.0.0 (14 Aug 2020)
    97100* Feature : Be able to watch recommended session recordings from wordpress admin itself
  • humcommerce/trunk/admin/class-humcommerce-admin.php

    r2360765 r2361149  
    276276            }
    277277        }
    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
    281281
    282282        return array(
  • humcommerce/trunk/admin/class-magic-report.php

    r2360765 r2361149  
    4848    public function no_items() {
    4949        $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;
    5152        ?>
    5253        <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>
    5455            <div class="humc-text">
    55                 Just give it some time and we will send you mail tomorrow at <?php echo esc_html( $date ); ?> when
     56                Just give it some time and we will send you mail in approx <?php echo esc_html( $remaining_time ); ?> hours when
    5657                recordings are ready for you to see
    5758            </div>
  • humcommerce/trunk/admin/views/recording-email.php

    r2360765 r2361149  
    1515<ul>
    1616    <?php foreach ( $summary as $line ) : ?>
    17         <li><?php echo esc_html( $line ); ?></li>
     17        <li><?php echo wp_kses_post( $line ); ?></li>
    1818    <?php endforeach; ?>
    1919</ul>
  • humcommerce/trunk/humcommerce.php

    r2360765 r2361149  
    1616 * Plugin URI:        https://wordpress.org/plugins/humcommerce/
    1717 * Description:       HumCommerce WordPress plugin to Record, Analyze & Convert your visitors.
    18  * Version:           3.0.0
     18 * Version:           3.0.1
    1919 * Author:            HumCommerce
    2020 * Author URI:        https://www.humcommerce.com
     
    2929}
    3030
    31 define( 'HUMCOMMERCE_VERSION', '3.0.0' );
     31define( 'HUMCOMMERCE_VERSION', '3.0.1' );
    3232
    3333if ( ! defined( 'HUMCOMMERCE_HOST' ) ) {
  • humcommerce/trunk/includes/class-humcommerce.php

    r2360765 r2361149  
    125125        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humcommerce-loader.php';
    126126
     127        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-humc-utils.php';
     128
    127129        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-magic-api.php';
    128130
Note: See TracChangeset for help on using the changeset viewer.