sitecore-dms

Sitecore 6.5 DMS - Registering a goal completion via the API

假装没事ソ 提交于 2019-12-06 13:47:42
I want to register a goal/conversion on my Sitecore 6.5 site using the API rather than a 'thank-you' page. I've seen this question about how to do it Sitecore OMS - achieving a goal on a form submission but the answer relates to the API prior to Sitecore 6.5 where it was overhauled quite significantly. Has anyone done this? Or has this functionality been intentionally removed? Jens Mikkelsen Have you tried something like protected void btnSubmit_Click(object sender, EventArgs e) { if (Sitecore.Analytics.Tracker.IsActive && Sitecore.Analytics.Tracker.CurrentPage != null) { PageEventData

Get Profile Key Score for Individual Page in Sitecore

房东的猫 提交于 2019-12-06 04:16:32
I have a question regarding Sitecore Analytics and user profile keys. I need to be able to get the score of a profile key for an individual page. For example, if I have a profile key called "traveler" that could have a value of 1-10 on a given page, I need to be able to get the value for that key that was assigned by the content author. I have found that by using the following: Sitecore.Analytics.AnalyticsTracker.Current.Data.Profiles.GetProfile("Profile Name").GetProfileKeyValue("traveler") I can get the total score that the user has accumulated throughout their session, but I cannot seem to

How to disable Sitecore Analytics entirely

点点圈 提交于 2019-12-04 22:31:27
问题 We are experiencing cpu problems on our production servers. After profiling with the jetbrains cpu profiler, we have noticed that some functions in the assembly Sitecore.Analytics were executed. This is somewhat strange because we have disabled all analytics related configuration in de config files. After looking into the /sitecore/admin/showconfig.aspx we noticed that there are still a lot of Sitecore.Analytics related configurations in this config while these are deactivated in our config

How do I get the value of a WFFM field as a tag and output it in a Sitecore DMS report?

不打扰是莪最后的温柔 提交于 2019-12-04 03:56:38
问题 If I create a Web Forms For Marketers form with Analytics enabled I can choose to add each field as a tag to a Visitor. I can't see how to configure which tag they should be added to, or even what the tag is called by default (I'm assuming a tag with the field name is created). I'd also like to know how to retrieve the tag data in a visit report (i.e. the one you'd get if you double clicked on a form submission in the Form Reports dialogue). I can see how to access plenty of inbuilt tags, but

How to disable Sitecore Analytics entirely

穿精又带淫゛_ 提交于 2019-12-03 15:04:41
We are experiencing cpu problems on our production servers. After profiling with the jetbrains cpu profiler, we have noticed that some functions in the assembly Sitecore.Analytics were executed. This is somewhat strange because we have disabled all analytics related configuration in de config files. After looking into the /sitecore/admin/showconfig.aspx we noticed that there are still a lot of Sitecore.Analytics related configurations in this config while these are deactivated in our config files. For example In the file /App_Config/Include/EventHandlers.config the configuration looks like

How do I get the value of a WFFM field as a tag and output it in a Sitecore DMS report?

佐手、 提交于 2019-12-01 20:52:16
If I create a Web Forms For Marketers form with Analytics enabled I can choose to add each field as a tag to a Visitor. I can't see how to configure which tag they should be added to, or even what the tag is called by default (I'm assuming a tag with the field name is created). I'd also like to know how to retrieve the tag data in a visit report (i.e. the one you'd get if you double clicked on a form submission in the Form Reports dialogue). I can see how to access plenty of inbuilt tags, but I can't find out how to fill these specifically from the form, and I cant see any fields in the report

How do I bucket Sitecore items on something other than their creation date?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 08:04:26
I'm using Sitecore with DMS (Sitecore 7.2), and I'm setting up various controls on my layouts to pull content from different folders based on the users profile card. I'd like those folders to be "bucket" folders, since there'll be one folder for each profile card, and it'll be a bit unpleasant for authors to have to manually update all of these folders every time a new profile card is added. The " Developers Guide to Item Buckets and Search " says: by default, the items are organized according to the date and time of when the item was created, but this can be configured to use different

How do I trigger a profile in Sitecore DMS?

人盡茶涼 提交于 2019-11-30 23:40:37
I am looking for a way to allow visitors to select what content they want displayed on the site. Is there a way to programatically trigger a profile in Sitecore DMS? I've looked at relevant documentation on SDN ( http://sdn.sitecore.net/Reference/Sitecore 6/DMS Documentation.aspx ), but so far haven't found a way. EDIT: Raised this on Sitecore Support Portal - will post an answer once I find out more. xoail I have done something similar on my project. Check out this code sample and let me know if you have any questions. Also, make sure you add profiles to content items too. Call