Changeset 3177713
- Timestamp:
- 10/29/2024 07:24:43 AM (17 months ago)
- Location:
- gtm-kit
- Files:
-
- 12 edited
- 1 copied
-
tags/2.2.1 (copied) (copied from gtm-kit/trunk)
-
tags/2.2.1/changelog.txt (modified) (1 diff)
-
tags/2.2.1/gtm-kit.php (modified) (2 diffs)
-
tags/2.2.1/languages/gtm-kit.pot (modified) (2 diffs)
-
tags/2.2.1/readme.txt (modified) (2 diffs)
-
tags/2.2.1/src/Admin/Suggestions.php (modified) (1 diff)
-
tags/2.2.1/src/Integration/WooCommerce.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/gtm-kit.php (modified) (2 diffs)
-
trunk/languages/gtm-kit.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Admin/Suggestions.php (modified) (1 diff)
-
trunk/src/Integration/WooCommerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gtm-kit/tags/2.2.1/changelog.txt
r3169885 r3177713 1 1 *** GTM Kit *** 2 3 2024-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. 2 6 3 7 2024-10-16 - version 2.2.0 -
gtm-kit/tags/2.2.1/gtm-kit.php
r3169885 r3177713 4 4 * 5 5 * Plugin Name: GTM Kit 6 * Version: 2.2. 06 * Version: 2.2.1 7 7 * Plugin URI: https://gtmkit.com/ 8 8 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed. … … 28 28 } 29 29 30 const GTMKIT_VERSION = '2.2. 0';30 const GTMKIT_VERSION = '2.2.1'; 31 31 32 32 if ( ! defined( 'GTMKIT_FILE' ) ) { -
gtm-kit/tags/2.2.1/languages/gtm-kit.pot
r3169885 r3177713 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: GTM Kit 2.2. 0\n"5 "Project-Id-Version: GTM Kit 2.2.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gtm-kit\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" -
gtm-kit/tags/2.2.1/readme.txt
r3169885 r3177713 3 3 Donate link: https://github.com/tlamedia/gtm-kit 4 4 Tags: google tag manager, gtm, woocommerce, analytics, ga4 5 Tested up to: 6. 66 Stable tag: 2.2. 05 Tested up to: 6.7 6 Stable tag: 2.2.1 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 93 93 == Changelog == 94 94 95 = 2.2.1 = 96 97 Release 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 95 105 = 2.2.0 = 96 106 -
gtm-kit/tags/2.2.1/src/Admin/Suggestions.php
r3169885 r3177713 157 157 $debug_og = $this->options->get( 'general', 'debug_log' ); 158 158 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' ) ) { 160 160 $this->notifications_handler->remove_notification_by_id( $notification_id ); 161 161 return; -
gtm-kit/tags/2.2.1/src/Integration/WooCommerce.php
r3169885 r3177713 349 349 } elseif ( is_product_tag() ) { 350 350 $data_layer = $this->get_datalayer_content_product_tag( $data_layer ); 351 } elseif ( is_cart() ) {352 $data_layer = $this->get_datalayer_content_cart( $data_layer );353 351 } elseif ( is_order_received_page() ) { 354 352 $data_layer = $this->get_datalayer_content_order_received( $data_layer ); 355 353 } elseif ( is_checkout() ) { 356 354 $data_layer = $this->get_datalayer_content_checkout( $data_layer ); 355 } elseif ( is_cart() ) { 356 $data_layer = $this->get_datalayer_content_cart( $data_layer ); 357 357 } 358 358 -
gtm-kit/trunk/changelog.txt
r3169885 r3177713 1 1 *** GTM Kit *** 2 3 2024-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. 2 6 3 7 2024-10-16 - version 2.2.0 -
gtm-kit/trunk/gtm-kit.php
r3169885 r3177713 4 4 * 5 5 * Plugin Name: GTM Kit 6 * Version: 2.2. 06 * Version: 2.2.1 7 7 * Plugin URI: https://gtmkit.com/ 8 8 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed. … … 28 28 } 29 29 30 const GTMKIT_VERSION = '2.2. 0';30 const GTMKIT_VERSION = '2.2.1'; 31 31 32 32 if ( ! defined( 'GTMKIT_FILE' ) ) { -
gtm-kit/trunk/languages/gtm-kit.pot
r3169885 r3177713 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: GTM Kit 2.2. 0\n"5 "Project-Id-Version: GTM Kit 2.2.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gtm-kit\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" -
gtm-kit/trunk/readme.txt
r3169885 r3177713 3 3 Donate link: https://github.com/tlamedia/gtm-kit 4 4 Tags: google tag manager, gtm, woocommerce, analytics, ga4 5 Tested up to: 6. 66 Stable tag: 2.2. 05 Tested up to: 6.7 6 Stable tag: 2.2.1 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 93 93 == Changelog == 94 94 95 = 2.2.1 = 96 97 Release 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 95 105 = 2.2.0 = 96 106 -
gtm-kit/trunk/src/Admin/Suggestions.php
r3169885 r3177713 157 157 $debug_og = $this->options->get( 'general', 'debug_log' ); 158 158 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' ) ) { 160 160 $this->notifications_handler->remove_notification_by_id( $notification_id ); 161 161 return; -
gtm-kit/trunk/src/Integration/WooCommerce.php
r3169885 r3177713 349 349 } elseif ( is_product_tag() ) { 350 350 $data_layer = $this->get_datalayer_content_product_tag( $data_layer ); 351 } elseif ( is_cart() ) {352 $data_layer = $this->get_datalayer_content_cart( $data_layer );353 351 } elseif ( is_order_received_page() ) { 354 352 $data_layer = $this->get_datalayer_content_order_received( $data_layer ); 355 353 } elseif ( is_checkout() ) { 356 354 $data_layer = $this->get_datalayer_content_checkout( $data_layer ); 355 } elseif ( is_cart() ) { 356 $data_layer = $this->get_datalayer_content_cart( $data_layer ); 357 357 } 358 358
Note: See TracChangeset
for help on using the changeset viewer.