Plugin Directory

Changeset 3171306


Ignore:
Timestamp:
10/18/2024 09:02:20 AM (17 months ago)
Author:
wiredmindshelp
Message:

Updated from GitLab CI 1.6.3

Location:
ip2ga/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ip2ga/trunk/README.txt

    r3171299 r3171306  
    66Tested up to: 6.6 
    77Requires PHP: 7.4 
    8 Stable tag: 1.6.2 
     8Stable tag: 1.6.3 
    99License: GPLv2 or later 
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    221221== Changelog ==
    222222
    223 = 1.6.2 =
     223= 1.6.3 =
    224224* Updated AJAX tracking for form submit.
    225225* Updated visitor ID generation method
  • ip2ga/trunk/ip2ga-plugin.php

    r3171299 r3171306  
    33Plugin Name: IP2GA
    44Description: 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.2
     5Version: 1.6.3
    66Author: Wiredminds GmbH
    77Author URI: https://wiredminds.de
     
    260260
    261261    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);
    263263        wp_localize_script('ga-ip2c-event-tracking', 'ga_ip2c_ajax', [
    264264            'ajax_url' => admin_url('admin-ajax.php'),
     
    405405    // Ensure the script is only loaded on the plugin's settings page
    406406    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);
    408408    }
    409409}
Note: See TracChangeset for help on using the changeset viewer.