Changeset 3040825
- Timestamp:
- 02/25/2024 02:08:34 PM (2 years ago)
- Location:
- gtm-server-side
- Files:
-
- 6 edited
- 1 copied
-
tags/2.1.12 (copied) (copied from gtm-server-side/trunk)
-
tags/2.1.12/README.txt (modified) (2 diffs)
-
tags/2.1.12/gtm-server-side.php (modified) (1 diff)
-
tags/2.1.12/includes/class-gtm-server-side-webhook-purchase.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/gtm-server-side.php (modified) (1 diff)
-
trunk/includes/class-gtm-server-side-webhook-purchase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gtm-server-side/tags/2.1.12/README.txt
r3011774 r3040825 4 4 Requires at least: 5.2.0 5 5 Tested up to: 6.4.2 6 Stable tag: 2.1.1 16 Stable tag: 2.1.12 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 = 2.1.12 = 70 * Add more cookies to the list of cookies that are sent to the server 71 69 72 = 2.1.11 = 70 73 * Tested up to WordPress 6.4.2 -
gtm-server-side/tags/2.1.12/gtm-server-side.php
r3011774 r3040825 11 11 * Plugin URI: https://wordpress.org/plugins/gtm-server-side/ 12 12 * Description: Enhance conversion tracking by implementing server-side tagging using server Google Tag Manager container. Effortlessly configure data layer events in web GTM, send webhooks, set up custom loader, and extend cookie lifetime. 13 * Version: 2.1.1 113 * Version: 2.1.12 14 14 * Author: Stape 15 15 * Author URI: https://stape.io -
gtm-server-side/tags/2.1.12/includes/class-gtm-server-side-webhook-purchase.php
r2915406 r3040825 71 71 '_gcl_aw' => filter_input( INPUT_COOKIE, '_gcl_aw', FILTER_DEFAULT ), 72 72 'ttclid' => filter_input( INPUT_COOKIE, 'ttclid', FILTER_DEFAULT ), 73 '_dcid' => filter_input( INPUT_COOKIE, '_dcid', FILTER_DEFAULT ), 74 'FPID' => filter_input( INPUT_COOKIE, 'FPID', FILTER_DEFAULT ), 75 'FPLC' => filter_input( INPUT_COOKIE, 'FPLC', FILTER_DEFAULT ), 73 76 ); 74 77 $request_cookies = array_filter( $request_cookies ); … … 76 79 if ( ! empty( $request_cookies ) ) { 77 80 $request['cookies'] = $request_cookies; 81 82 if (isset($request_cookies['_dcid'])) { 83 $request['client_id'] = $request_cookies['_dcid']; 84 } 78 85 } 79 86 -
gtm-server-side/trunk/README.txt
r3011774 r3040825 4 4 Requires at least: 5.2.0 5 5 Tested up to: 6.4.2 6 Stable tag: 2.1.1 16 Stable tag: 2.1.12 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 68 68 == Changelog == 69 = 2.1.12 = 70 * Add more cookies to the list of cookies that are sent to the server 71 69 72 = 2.1.11 = 70 73 * Tested up to WordPress 6.4.2 -
gtm-server-side/trunk/gtm-server-side.php
r3011774 r3040825 11 11 * Plugin URI: https://wordpress.org/plugins/gtm-server-side/ 12 12 * Description: Enhance conversion tracking by implementing server-side tagging using server Google Tag Manager container. Effortlessly configure data layer events in web GTM, send webhooks, set up custom loader, and extend cookie lifetime. 13 * Version: 2.1.1 113 * Version: 2.1.12 14 14 * Author: Stape 15 15 * Author URI: https://stape.io -
gtm-server-side/trunk/includes/class-gtm-server-side-webhook-purchase.php
r2915406 r3040825 71 71 '_gcl_aw' => filter_input( INPUT_COOKIE, '_gcl_aw', FILTER_DEFAULT ), 72 72 'ttclid' => filter_input( INPUT_COOKIE, 'ttclid', FILTER_DEFAULT ), 73 '_dcid' => filter_input( INPUT_COOKIE, '_dcid', FILTER_DEFAULT ), 74 'FPID' => filter_input( INPUT_COOKIE, 'FPID', FILTER_DEFAULT ), 75 'FPLC' => filter_input( INPUT_COOKIE, 'FPLC', FILTER_DEFAULT ), 73 76 ); 74 77 $request_cookies = array_filter( $request_cookies ); … … 76 79 if ( ! empty( $request_cookies ) ) { 77 80 $request['cookies'] = $request_cookies; 81 82 if (isset($request_cookies['_dcid'])) { 83 $request['client_id'] = $request_cookies['_dcid']; 84 } 78 85 } 79 86
Note: See TracChangeset
for help on using the changeset viewer.