Changeset 3269396
- Timestamp:
- 04/09/2025 07:32:00 AM (12 months ago)
- Location:
- gtm-kit
- Files:
-
- 12 edited
- 1 copied
-
tags/2.4.2 (copied) (copied from gtm-kit/trunk)
-
tags/2.4.2/changelog.txt (modified) (1 diff)
-
tags/2.4.2/gtm-kit.php (modified) (3 diffs)
-
tags/2.4.2/languages/gtm-kit.pot (modified) (2 diffs)
-
tags/2.4.2/readme.txt (modified) (2 diffs)
-
tags/2.4.2/src/Integration/WooCommerce.php (modified) (1 diff)
-
tags/2.4.2/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/gtm-kit.php (modified) (3 diffs)
-
trunk/languages/gtm-kit.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Integration/WooCommerce.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gtm-kit/tags/2.4.2/changelog.txt
r3266236 r3269396 1 1 *** GTM Kit *** 2 3 2025-04-09 - version 2.4.2 4 * Fix: Fix fatal error in admin when used together with MC4WP: Mailchimp for WordPress. 5 * Dev: Tested up to WordPress 6.8. 6 * Dev: Tested up to WooCommerce 9.8. 2 7 3 8 2025-04-02 - version 2.4.1 -
gtm-kit/tags/2.4.2/gtm-kit.php
r3266236 r3269396 4 4 * 5 5 * Plugin Name: GTM Kit 6 * Version: 2.4. 16 * Version: 2.4.2 7 7 * Plugin URI: https://gtmkit.com/ 8 8 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed. … … 16 16 * 17 17 * WC requires at least: 8.4 18 * WC tested up to: 9. 718 * WC tested up to: 9.8 19 19 * 20 20 * @package GTM Kit … … 28 28 } 29 29 30 const GTMKIT_VERSION = '2.4. 1';30 const GTMKIT_VERSION = '2.4.2'; 31 31 32 32 if ( ! defined( 'GTMKIT_FILE' ) ) { -
gtm-kit/tags/2.4.2/languages/gtm-kit.pot
r3266236 r3269396 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: GTM Kit 2.4. 1\n"5 "Project-Id-Version: GTM Kit 2.4.2\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: 2025-04-0 3T10:18:51+00:00\n"12 "POT-Creation-Date: 2025-04-08T14:48:09+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.4.2/readme.txt
r3266236 r3269396 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. 76 Stable tag: 2.4. 15 Tested up to: 6.8 6 Stable tag: 2.4.2 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 97 97 == Changelog == 98 98 99 = 2.4.2 = 100 101 Release date: 2025-04-09 102 103 #### Bugfixes: 104 * Fix fatal error when used together with MC4WP: Mailchimp for WordPress. 105 106 #### Other: 107 * Tested up to WordPress 6.8. 108 * Tested up to WooCommerce 9.8. 109 99 110 = 2.4.1 = 100 111 -
gtm-kit/tags/2.4.2/src/Integration/WooCommerce.php
r3254521 r3269396 1122 1122 * Has WooCommerce blocks 1123 1123 * 1124 * @param int $post_id The post ID.1124 * @param int|null $post_id The post ID. 1125 1125 * 1126 1126 * @return array<int, mixed> 1127 1127 */ 1128 public function has_woocommerce_blocks( int $post_id ): array { 1128 public function has_woocommerce_blocks( ?int $post_id ): array { 1129 if ( null === $post_id ) { 1130 return []; 1131 } 1132 1129 1133 $post_content = get_the_content( null, false, $post_id ); 1130 1134 -
gtm-kit/tags/2.4.2/vendor/composer/installed.php
r3266155 r3269396 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 08f8e3ee6f0805b3abcefb99a363510df9be5e84',6 'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 08f8e3ee6f0805b3abcefb99a363510df9be5e84',16 'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
gtm-kit/trunk/changelog.txt
r3266236 r3269396 1 1 *** GTM Kit *** 2 3 2025-04-09 - version 2.4.2 4 * Fix: Fix fatal error in admin when used together with MC4WP: Mailchimp for WordPress. 5 * Dev: Tested up to WordPress 6.8. 6 * Dev: Tested up to WooCommerce 9.8. 2 7 3 8 2025-04-02 - version 2.4.1 -
gtm-kit/trunk/gtm-kit.php
r3266236 r3269396 4 4 * 5 5 * Plugin Name: GTM Kit 6 * Version: 2.4. 16 * Version: 2.4.2 7 7 * Plugin URI: https://gtmkit.com/ 8 8 * Description: Google Tag Manager implementation focusing on flexibility and pagespeed. … … 16 16 * 17 17 * WC requires at least: 8.4 18 * WC tested up to: 9. 718 * WC tested up to: 9.8 19 19 * 20 20 * @package GTM Kit … … 28 28 } 29 29 30 const GTMKIT_VERSION = '2.4. 1';30 const GTMKIT_VERSION = '2.4.2'; 31 31 32 32 if ( ! defined( 'GTMKIT_FILE' ) ) { -
gtm-kit/trunk/languages/gtm-kit.pot
r3266236 r3269396 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: GTM Kit 2.4. 1\n"5 "Project-Id-Version: GTM Kit 2.4.2\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: 2025-04-0 3T10:18:51+00:00\n"12 "POT-Creation-Date: 2025-04-08T14:48:09+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
r3266236 r3269396 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. 76 Stable tag: 2.4. 15 Tested up to: 6.8 6 Stable tag: 2.4.2 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 97 97 == Changelog == 98 98 99 = 2.4.2 = 100 101 Release date: 2025-04-09 102 103 #### Bugfixes: 104 * Fix fatal error when used together with MC4WP: Mailchimp for WordPress. 105 106 #### Other: 107 * Tested up to WordPress 6.8. 108 * Tested up to WooCommerce 9.8. 109 99 110 = 2.4.1 = 100 111 -
gtm-kit/trunk/src/Integration/WooCommerce.php
r3254521 r3269396 1122 1122 * Has WooCommerce blocks 1123 1123 * 1124 * @param int $post_id The post ID.1124 * @param int|null $post_id The post ID. 1125 1125 * 1126 1126 * @return array<int, mixed> 1127 1127 */ 1128 public function has_woocommerce_blocks( int $post_id ): array { 1128 public function has_woocommerce_blocks( ?int $post_id ): array { 1129 if ( null === $post_id ) { 1130 return []; 1131 } 1132 1129 1133 $post_content = get_the_content( null, false, $post_id ); 1130 1134 -
gtm-kit/trunk/vendor/composer/installed.php
r3266155 r3269396 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 08f8e3ee6f0805b3abcefb99a363510df9be5e84',6 'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 08f8e3ee6f0805b3abcefb99a363510df9be5e84',16 'reference' => '12d5e68b376e59638d0b93a3c5dbaca4a9eda572', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.