Changeset 3171306
- Timestamp:
- 10/18/2024 09:02:20 AM (17 months ago)
- Location:
- ip2ga/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
ip2ga-plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ip2ga/trunk/README.txt
r3171299 r3171306 6 6 Tested up to: 6.6 7 7 Requires PHP: 7.4 8 Stable tag: 1.6. 28 Stable tag: 1.6.3 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 221 221 == Changelog == 222 222 223 = 1.6. 2=223 = 1.6.3 = 224 224 * Updated AJAX tracking for form submit. 225 225 * Updated visitor ID generation method -
ip2ga/trunk/ip2ga-plugin.php
r3171299 r3171306 3 3 Plugin Name: IP2GA 4 4 Description: Track all user activities on the site, including page views, button clicks, and form submissions, and send them to Google Analytics 4. 5 Version: 1.6. 25 Version: 1.6.3 6 6 Author: Wiredminds GmbH 7 7 Author URI: https://wiredminds.de … … 260 260 261 261 if ($enable_ajax_tracking) { 262 wp_enqueue_script('ga-ip2c-event-tracking', plugins_url('/ip2ga-event-tracking.js', __FILE__), array('jquery'), '1.6. 2', true);262 wp_enqueue_script('ga-ip2c-event-tracking', plugins_url('/ip2ga-event-tracking.js', __FILE__), array('jquery'), '1.6.3', true); 263 263 wp_localize_script('ga-ip2c-event-tracking', 'ga_ip2c_ajax', [ 264 264 'ajax_url' => admin_url('admin-ajax.php'), … … 405 405 // Ensure the script is only loaded on the plugin's settings page 406 406 if ($hook_suffix == 'settings_page_ga_ip2c_settings') { 407 wp_enqueue_script('ga-ip2c-admin-script', plugins_url('/admin-script.js', __FILE__), array('jquery'), '1.6. 2', true);407 wp_enqueue_script('ga-ip2c-admin-script', plugins_url('/admin-script.js', __FILE__), array('jquery'), '1.6.3', true); 408 408 } 409 409 }
Note: See TracChangeset
for help on using the changeset viewer.