控制 Sitefinity Cookie(个性化(sf-prs-ss、sf-prs-lu、sf-prs-vp、sf-prs-vu)、sf-data-intell-subject)

问题描述 投票:0回答:1

Sitefinity 是否提供任何方法来控制 Sitefinity cookie:sf-prs-ss、sf-prs-lu、sf-prs-vp、sf-prs-vu(个性化模块)、sf-data-intell-subject?

我刚刚找到了 Sitefinity 的一个关于删除个性化的手动脚本,但没有找到关于重新初始化它的脚本。 https://community.progress.com/s/article/unused-cookies-show-up-as-in-use-in-chrome

我们正在使用 Sitefinity 14 并从事有关控制 cookie 的项目:我们选择带有 GTM 的 Civic cookie。

谢谢!

Sitefinity 解决方案控制 cookie

cookies sitefinity
1个回答
0
投票

Cookie 由 Sitefinity 的跟踪同意自动管理。只要您遵循该方法,就不需要手动重新初始化它们。

// The next code line is just a sample illustrating the general flow of your site logic. Do not use it in production.
// Instead, obtain user consent using your actual Tracking Consent Manager invocation and pass it to updateUserCOnsent function.
var consent = window.confirm("We need your consent for website tracking and cookie management. Click OK if you agree, otherwise close the site or click Cancel");

if(window.TrackingConsentManager) {
    window.TrackingConsentManager.updateUserConsent(consent);
}

下面的屏幕截图显示了浅色模式不允许跟踪的行为,深色模式显示了批准跟踪的结果。

您可以在文档此处阅读更多有关如何使用 Google 跟踪代码管理器配置 Sitefinity 的信息。

希望有帮助, 约赫姆。

© www.soinside.com 2019 - 2024. All rights reserved.