Plugin Directory

Changeset 3463213


Ignore:
Timestamp:
02/17/2026 08:28:50 AM (6 weeks ago)
Author:
tlamedia
Message:

Update to version 2.8.2 from GitHub

Location:
gtm-kit
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • gtm-kit/tags/2.8.2/changelog.txt

    r3450172 r3463213  
    11*** GTM Kit ***
     2
     32026-02-17 - version 2.8.2
     4* Fix: Fix undefined array key warning for order-received query var in edge cases like certain payment gateway redirects or bot traffic.
    25
    362026-01-30 - version 2.8.1
  • gtm-kit/tags/2.8.2/gtm-kit.php

    r3450172 r3463213  
    44 *
    55 * Plugin Name: GTM Kit
    6  * Version:     2.8.1
     6 * Version:     2.8.2
    77 * Plugin URI:  https://gtmkit.com/
    88 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed.
     
    2828}
    2929
    30 const GTMKIT_VERSION = '2.8.1';
     30const GTMKIT_VERSION = '2.8.2';
    3131
    3232if ( ! defined( 'GTMKIT_FILE' ) ) {
  • gtm-kit/tags/2.8.2/languages/gtm-kit.pot

    r3450172 r3463213  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: GTM Kit 2.8.1\n"
     5"Project-Id-Version: GTM Kit 2.8.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gtm-kit\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2026-01-29T13:27:32+00:00\n"
     12"POT-Creation-Date: 2026-02-17T08:14:19+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.9.0\n"
  • gtm-kit/tags/2.8.2/readme.txt

    r3450172 r3463213  
    44Tags: google tag manager, gtm, woocommerce, analytics, ga4
    55Tested up to: 6.9
    6 Stable tag: 2.8.1
     6Stable tag: 2.8.2
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9797== Changelog ==
    9898
     99= 2.8.2 =
     100
     101Release date: 2026-02-17
     102
     103#### Bugfixes:
     104* Fix undefined array key warning for order-received query var in edge cases like certain payment gateway redirects or bot traffic.
     105
    99106= 2.8.1 =
    100107
  • gtm-kit/tags/2.8.2/src/Integration/WooCommerce.php

    r3449311 r3463213  
    514514        global $wp;
    515515
    516         $order_id = apply_filters( 'woocommerce_thankyou_order_id', absint( $wp->query_vars['order-received'] ) );
     516        $order_id = apply_filters( 'woocommerce_thankyou_order_id', absint( $wp->query_vars['order-received'] ?? 0 ) );
    517517
    518518        if ( ! $order_id || apply_filters( 'gtmkit_disable_frontend_purchase_event', false ) ) {
  • gtm-kit/trunk/changelog.txt

    r3450172 r3463213  
    11*** GTM Kit ***
     2
     32026-02-17 - version 2.8.2
     4* Fix: Fix undefined array key warning for order-received query var in edge cases like certain payment gateway redirects or bot traffic.
    25
    362026-01-30 - version 2.8.1
  • gtm-kit/trunk/gtm-kit.php

    r3450172 r3463213  
    44 *
    55 * Plugin Name: GTM Kit
    6  * Version:     2.8.1
     6 * Version:     2.8.2
    77 * Plugin URI:  https://gtmkit.com/
    88 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed.
     
    2828}
    2929
    30 const GTMKIT_VERSION = '2.8.1';
     30const GTMKIT_VERSION = '2.8.2';
    3131
    3232if ( ! defined( 'GTMKIT_FILE' ) ) {
  • gtm-kit/trunk/languages/gtm-kit.pot

    r3450172 r3463213  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: GTM Kit 2.8.1\n"
     5"Project-Id-Version: GTM Kit 2.8.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gtm-kit\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2026-01-29T13:27:32+00:00\n"
     12"POT-Creation-Date: 2026-02-17T08:14:19+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.9.0\n"
  • gtm-kit/trunk/readme.txt

    r3450172 r3463213  
    44Tags: google tag manager, gtm, woocommerce, analytics, ga4
    55Tested up to: 6.9
    6 Stable tag: 2.8.1
     6Stable tag: 2.8.2
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9797== Changelog ==
    9898
     99= 2.8.2 =
     100
     101Release date: 2026-02-17
     102
     103#### Bugfixes:
     104* Fix undefined array key warning for order-received query var in edge cases like certain payment gateway redirects or bot traffic.
     105
    99106= 2.8.1 =
    100107
  • gtm-kit/trunk/src/Integration/WooCommerce.php

    r3449311 r3463213  
    514514        global $wp;
    515515
    516         $order_id = apply_filters( 'woocommerce_thankyou_order_id', absint( $wp->query_vars['order-received'] ) );
     516        $order_id = apply_filters( 'woocommerce_thankyou_order_id', absint( $wp->query_vars['order-received'] ?? 0 ) );
    517517
    518518        if ( ! $order_id || apply_filters( 'gtmkit_disable_frontend_purchase_event', false ) ) {
Note: See TracChangeset for help on using the changeset viewer.