Created
October 20, 2020 22:58
-
-
Save BillCacy/0a9e14413a370c61fd75345e741f6ef3 to your computer and use it in GitHub Desktop.
Patch file for overriding the Sitecore.Analytics.Pipelines.StartTracking.ProcessQueryStringCampaign
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:set="http://www.sitecore.net/xmlconfig/set/" xmlns:role="http://www.sitecore.net/xmlconfig/role/"> | |
<sitecore role:require="Standalone or ContentDelivery or ContentManagement"> | |
<pipelines> | |
<startTracking> | |
<!-- Patched to handle instances where campaign is expired but can still be triggered --> | |
<processor type="Sitecore.Analytics.Pipelines.StartTracking.ProcessQueryStringCampaign, Sitecore.Analytics"> | |
<patch:attribute name="type">YOURNAMESPACE.Analytics.Pipelines.StartTracking.ProcessQueryStringCampaignEx, YOURNAMESPACE.Analytics</patch:attribute> | |
</processor> | |
</startTracking> | |
</pipelines> | |
</sitecore> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment