I have a question about triggering profiles associated with an item. If a visitor visits a page, the profiles associated with that page are triggered for that visitor.
How can I trigger the profiles associated with an item in code? The item is not a page. I only want to trigger the profiles if a visitor matches some kind of conidtion.
Thank you!
This is all done through the
startTracking
pipeline. Unfortunately, it looks as if Sitecore has "hard coded" the pipeline to use the Context Item. You should be able to accomplish this though by replacing theProcessItem
processor.Note: The following is untested.
Sitecore.Analytics.Pipelines.StartTracking.StartTrackingArgs
which has anItem
propertySitecore.Analytics.Pipelines.StartTracking.ProcessItem
. Use reflector or ILSpy to pull the existing logic of theProcess
method. If theStartTrackingArgs
passed in are of your subclass, and anItem
property is specified, use it instead of the context item.ProcessItem
in thestartTracking
pipeline using an Include config with a patch:attribute.StartTrackingArgs
and callSitecore.Analytics.Pipelines.StartTracking.StartTrackingPipeline.Run(yourArgs)
.