Sitecore“您必须在可以编辑之前锁定此项目”缺失

时间:2016-10-06 08:30:03

标签: locking sitecore workflow sitecore8

我不知道在哪里打开此警告消息。 enter image description here

我尝试了这个选项<setting name="RequireLockBeforeEditing" value="true"/>,但它没有帮助我。

谷歌也没有帮助我。

你有什么想法吗?

2 个答案:

答案 0 :(得分:3)

在Sitecore 8.1的全新安装上,除非您拥有支持Commerce的正确许可,否则编辑器通知将被覆盖并显示相关警告。这将取消所有其他通知,包括Lock&amp;编辑警告。

Commerce Warning

您可以通过including this patch解决问题(基本上只是从getContentEditorWarnings管道中删除了商业许可编辑器警告)。

<getContentEditorWarnings>
    <processor type="Sitecore.Commerce.Pipelines.ContentEditorLicenseWarning, Sitecore.Commerce">
        <patch:delete/>
    </processor>
</getContentEditorWarnings>

如果设置RequireLockBeforeEditing = true,您现在应该看到关于&#34;锁定&amp;编辑&#34;

Notification Warnings

答案 1 :(得分:1)

此选项仅针对非管理员用户显示。

如果您以admin或具有管理员访问权限的任何其他用户身份登录,则您将无法看到它。