|
10 | 10 | * Plugin Name: Stape Conversion Tracking |
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.39 |
| 13 | + * Version: 2.1.40 |
14 | 14 | * Author: Stape |
15 | 15 | * Author URI: https://stape.io |
16 | 16 | * License: GPL-2.0+ |
|
31 | 31 |
|
32 | 32 | add_action( 'init', array( GTM_Server_Side_Plugin_Upgrade::class, 'instance' ) ); |
33 | 33 | add_action( 'gtm_server_side', array( GTM_Server_Side_I18n::class, 'instance' ) ); |
| 34 | +add_action( 'gtm_server_side', array( GTM_Server_Side_WC_Order::class, 'instance' ) ); |
34 | 35 | add_action( 'gtm_server_side', array( GTM_Server_Side_Cron_Data_Manager_Ingest::class, 'instance' ) ); |
35 | 36 | add_action( 'gtm_server_side', array( GTM_Server_Side_Webhook_Purchase::class, 'instance' ) ); |
36 | 37 | add_action( 'gtm_server_side', array( GTM_Server_Side_Webhook_Processing::class, 'instance' ) ); |
37 | 38 | add_action( 'gtm_server_side', array( GTM_Server_Side_Webhook_Completed::class, 'instance' ) ); |
38 | 39 | add_action( 'gtm_server_side', array( GTM_Server_Side_Webhook_Refund::class, 'instance' ) ); |
39 | 40 | add_action( 'gtm_server_side', array( GTM_Server_Side_API_Data_Manager_Ingest::class, 'instance' ) ); |
| 41 | +add_action( 'gtm_server_side', array( GTM_Server_Side_Frontend_Ajax::class, 'instance' ) ); |
40 | 42 | add_action( 'gtm_server_side_admin', array( GTM_Server_Side_Admin_Settings::class, 'instance' ) ); |
41 | 43 | add_action( 'gtm_server_side_admin', array( GTM_Server_Side_Admin_Ajax::class, 'instance' ) ); |
42 | 44 | add_action( 'gtm_server_side_admin', array( GTM_Server_Side_Admin_Assets::class, 'instance' ) ); |
|
0 commit comments