5
我正在使用SDL Tridion SiteEdit 2009,並且希望從ComponentPresentation翻轉邊框中刪除Localize按鈕。我過去做過這件事,但沒有回憶我是如何做到的。有誰知道我可能如何實現這一目標?如何從SDL Tridion SiteEdit 2009中刪除「本地化」按鈕
我正在使用SDL Tridion SiteEdit 2009,並且希望從ComponentPresentation翻轉邊框中刪除Localize按鈕。我過去做過這件事,但沒有回憶我是如何做到的。有誰知道我可能如何實現這一目標?如何從SDL Tridion SiteEdit 2009中刪除「本地化」按鈕
查找本節在SiteEdit.config文件(通常在C:\ Program Files文件(x86)的\外表套上\ SiteEdit 2009 \ SiteEdit \應用程序\配置):
<!-- ** Component Toolbar **
If @Visible is set to "false" the toolbar will not be available.
Under <ButtonsVisibility> you can specify the availability of each button. -->
<ComponentToolbar Visible="true">
<ButtonsVisibility>
<Save>true</Save>
<Publish>true</Publish>
<EditParent>true</EditParent>
<Localize>true</Localize>
<StartActivity>true</StartActivity>
<FinishActivity>true</FinishActivity>
<Refresh>true</Refresh>
<Swap>true</Swap>
<EditInPopup>true</EditInPopup>
</ButtonsVisibility>
</ComponentToolbar>
並設置<Localize>
值到false
。