Plugin Directory

Changeset 2187578


Ignore:
Timestamp:
11/07/2019 09:37:51 AM (6 years ago)
Author:
humcommerce
Message:

Added a notice when user save's settings and change the tracker URL in javascript code

Location:
humcommerce/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • humcommerce/trunk/README.txt

    r2162836 r2187578  
    33Tags: humcommerce, analytics, heatmaps, session recordings
    44Requires at least: 3.0.1
    5 Tested up to: 5.2.2
     5Tested up to: 5.2.4
    66Requires PHP: 5.2.4
    7 Stable tag: 2.1.11
     7Stable tag: 2.1.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181== Changelog ==
    8282
     83Ver 2.1.12 (7 Nov 2019)
     84* Fix: Added notice after user save's the settings.
     85* Improvement: Change the HumCommerce URL in javascript tracking code
     86
    8387Ver 2.1.11 (25 Sept 2019)
    8488* Fix: Undefined index warnings in debug log or showing it on frontend.
  • humcommerce/trunk/admin/class-humcommerce-admin.php

    r2070392 r2187578  
    7878    }
    7979
     80    /**
     81     * Shows the notice after user saves the HumCommerce Settings.
     82     *
     83     * @since 2.1.12
     84     */
     85    public function humcommerce_add_settings_errors() {
    8086
     87        settings_errors();
     88
     89    }
    8190}
  • humcommerce/trunk/admin/class-humcommerce-settings.php

    r2130583 r2187578  
    193193     */
    194194    public function setting_host_fn() {
    195         echo "<input hidden id='host' class='regular-text code' style='flex-grow: 1; margin-right: 1rem;' name='humcommerce_options[host]' size='40' value='app.humdash.com' />";
     195        echo "<input hidden id='host' class='regular-text code' style='flex-grow: 1; margin-right: 1rem;' name='humcommerce_options[host]' size='40' value='app.humcommerce.com' />";
    196196    }
    197197
  • humcommerce/trunk/humcommerce.php

    r2162836 r2187578  
    1616 * Plugin URI:        https://wordpress.org/plugins/humcommerce/
    1717 * Description:       HumCommerce WordPress plugin to Record, Analyze & Convert your visitors.
    18  * Version:           2.1.11
     18 * Version:           2.1.12
    1919 * Author:            HumCommerce
    2020 * Author URI:        https://www.humcommerce.com
     
    2929}
    3030
    31 define( 'HUMCOMMERCE_VERSION', '2.1.11' );
     31define( 'HUMCOMMERCE_VERSION', '2.1.12' );
    3232
    3333
  • humcommerce/trunk/includes/class-humcommerce.php

    r2130583 r2187578  
    125125
    126126        $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' );
     127        $this->loader->add_action( 'admin_notices', $plugin_admin, 'humcommerce_add_settings_errors' );
    127128    }
    128129
Note: See TracChangeset for help on using the changeset viewer.