Plugin Directory

Changeset 3177713


Ignore:
Timestamp:
10/29/2024 07:24:43 AM (17 months ago)
Author:
tlamedia
Message:

Update to version 2.2.1 from GitHub

Location:
gtm-kit
Files:
12 edited
1 copied

Legend:

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

    r3169885 r3177713  
    11*** GTM Kit ***
     2
     32024-10-29 - version 2.2.1
     4* Fix: If the cart and checkout endpoints where set to the same page in order to skip the cart the 'checkout' and 'purchase' events would not fire.
     5* Dev: Tested up to WordPress 6.7.
    26
    372024-10-16 - version 2.2.0
  • gtm-kit/tags/2.2.1/gtm-kit.php

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

    r3169885 r3177713  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: GTM Kit 2.2.0\n"
     5"Project-Id-Version: GTM Kit 2.2.1\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: 2024-10-15T08:05:49+00:00\n"
     12"POT-Creation-Date: 2024-10-27T16:00:05+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.2.1/readme.txt

    r3169885 r3177713  
    33Donate link: https://github.com/tlamedia/gtm-kit
    44Tags: google tag manager, gtm, woocommerce, analytics, ga4
    5 Tested up to: 6.6
    6 Stable tag: 2.2.0
     5Tested up to: 6.7
     6Stable tag: 2.2.1
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9393== Changelog ==
    9494
     95= 2.2.1 =
     96
     97Release date: 2024-10-29
     98
     99#### Bugfixes:
     100* If the cart and checkout endpoints where set to the same page in order to skip the cart the 'checkout' and 'purchase' events would not fire.
     101
     102#### Other:
     103* Tested up to WordPress 6.7.
     104
    95105= 2.2.0 =
    96106
  • gtm-kit/tags/2.2.1/src/Admin/Suggestions.php

    r3169885 r3177713  
    157157        $debug_og    = $this->options->get( 'general', 'debug_log' );
    158158
    159         if ( ( ! $console_log && $debug_og ) || ( defined( 'WP_ENVIRONMENT_TYPE' ) && WP_ENVIRONMENT_TYPE === 'local' ) ) {
     159        if ( ( ! $console_log && ! $debug_og ) || ( defined( 'WP_ENVIRONMENT_TYPE' ) && WP_ENVIRONMENT_TYPE === 'local' ) ) {
    160160            $this->notifications_handler->remove_notification_by_id( $notification_id );
    161161            return;
  • gtm-kit/tags/2.2.1/src/Integration/WooCommerce.php

    r3169885 r3177713  
    349349        } elseif ( is_product_tag() ) {
    350350            $data_layer = $this->get_datalayer_content_product_tag( $data_layer );
    351         } elseif ( is_cart() ) {
    352             $data_layer = $this->get_datalayer_content_cart( $data_layer );
    353351        } elseif ( is_order_received_page() ) {
    354352            $data_layer = $this->get_datalayer_content_order_received( $data_layer );
    355353        } elseif ( is_checkout() ) {
    356354            $data_layer = $this->get_datalayer_content_checkout( $data_layer );
     355        } elseif ( is_cart() ) {
     356            $data_layer = $this->get_datalayer_content_cart( $data_layer );
    357357        }
    358358
  • gtm-kit/trunk/changelog.txt

    r3169885 r3177713  
    11*** GTM Kit ***
     2
     32024-10-29 - version 2.2.1
     4* Fix: If the cart and checkout endpoints where set to the same page in order to skip the cart the 'checkout' and 'purchase' events would not fire.
     5* Dev: Tested up to WordPress 6.7.
    26
    372024-10-16 - version 2.2.0
  • gtm-kit/trunk/gtm-kit.php

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

    r3169885 r3177713  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: GTM Kit 2.2.0\n"
     5"Project-Id-Version: GTM Kit 2.2.1\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: 2024-10-15T08:05:49+00:00\n"
     12"POT-Creation-Date: 2024-10-27T16:00:05+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

    r3169885 r3177713  
    33Donate link: https://github.com/tlamedia/gtm-kit
    44Tags: google tag manager, gtm, woocommerce, analytics, ga4
    5 Tested up to: 6.6
    6 Stable tag: 2.2.0
     5Tested up to: 6.7
     6Stable tag: 2.2.1
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    9393== Changelog ==
    9494
     95= 2.2.1 =
     96
     97Release date: 2024-10-29
     98
     99#### Bugfixes:
     100* If the cart and checkout endpoints where set to the same page in order to skip the cart the 'checkout' and 'purchase' events would not fire.
     101
     102#### Other:
     103* Tested up to WordPress 6.7.
     104
    95105= 2.2.0 =
    96106
  • gtm-kit/trunk/src/Admin/Suggestions.php

    r3169885 r3177713  
    157157        $debug_og    = $this->options->get( 'general', 'debug_log' );
    158158
    159         if ( ( ! $console_log && $debug_og ) || ( defined( 'WP_ENVIRONMENT_TYPE' ) && WP_ENVIRONMENT_TYPE === 'local' ) ) {
     159        if ( ( ! $console_log && ! $debug_og ) || ( defined( 'WP_ENVIRONMENT_TYPE' ) && WP_ENVIRONMENT_TYPE === 'local' ) ) {
    160160            $this->notifications_handler->remove_notification_by_id( $notification_id );
    161161            return;
  • gtm-kit/trunk/src/Integration/WooCommerce.php

    r3169885 r3177713  
    349349        } elseif ( is_product_tag() ) {
    350350            $data_layer = $this->get_datalayer_content_product_tag( $data_layer );
    351         } elseif ( is_cart() ) {
    352             $data_layer = $this->get_datalayer_content_cart( $data_layer );
    353351        } elseif ( is_order_received_page() ) {
    354352            $data_layer = $this->get_datalayer_content_order_received( $data_layer );
    355353        } elseif ( is_checkout() ) {
    356354            $data_layer = $this->get_datalayer_content_checkout( $data_layer );
     355        } elseif ( is_cart() ) {
     356            $data_layer = $this->get_datalayer_content_cart( $data_layer );
    357357        }
    358358
Note: See TracChangeset for help on using the changeset viewer.