Changeset 2187578
- Timestamp:
- 11/07/2019 09:37:51 AM (6 years ago)
- Location:
- humcommerce/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
admin/class-humcommerce-admin.php (modified) (1 diff)
-
admin/class-humcommerce-settings.php (modified) (1 diff)
-
humcommerce.php (modified) (2 diffs)
-
includes/class-humcommerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
humcommerce/trunk/README.txt
r2162836 r2187578 3 3 Tags: humcommerce, analytics, heatmaps, session recordings 4 4 Requires at least: 3.0.1 5 Tested up to: 5.2. 25 Tested up to: 5.2.4 6 6 Requires PHP: 5.2.4 7 Stable tag: 2.1.1 17 Stable tag: 2.1.12 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 81 81 == Changelog == 82 82 83 Ver 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 83 87 Ver 2.1.11 (25 Sept 2019) 84 88 * Fix: Undefined index warnings in debug log or showing it on frontend. -
humcommerce/trunk/admin/class-humcommerce-admin.php
r2070392 r2187578 78 78 } 79 79 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() { 80 86 87 settings_errors(); 88 89 } 81 90 } -
humcommerce/trunk/admin/class-humcommerce-settings.php
r2130583 r2187578 193 193 */ 194 194 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.hum dash.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' />"; 196 196 } 197 197 -
humcommerce/trunk/humcommerce.php
r2162836 r2187578 16 16 * Plugin URI: https://wordpress.org/plugins/humcommerce/ 17 17 * Description: HumCommerce WordPress plugin to Record, Analyze & Convert your visitors. 18 * Version: 2.1.1 118 * Version: 2.1.12 19 19 * Author: HumCommerce 20 20 * Author URI: https://www.humcommerce.com … … 29 29 } 30 30 31 define( 'HUMCOMMERCE_VERSION', '2.1.1 1' );31 define( 'HUMCOMMERCE_VERSION', '2.1.12' ); 32 32 33 33 -
humcommerce/trunk/includes/class-humcommerce.php
r2130583 r2187578 125 125 126 126 $this->loader->add_action( 'admin_enqueue_scripts', $plugin_admin, 'enqueue_styles' ); 127 $this->loader->add_action( 'admin_notices', $plugin_admin, 'humcommerce_add_settings_errors' ); 127 128 } 128 129
Note: See TracChangeset
for help on using the changeset viewer.