Login

How do I enable Ordinary page from Word and disable the others

Versions: n/a, FAQ number: 130, Old FAQ number: 2709

You need to add the the configuration block to web.config in order to change the behavior of the Office Add-In.

The following is the default configuration but scripts removed for the other Office applications and support only for a specific page type (ID 3 in this case), you have to change this ID to the ID number of your page type.

  <configSections>
    <sectionGroup name="episerver">
      <section name="clientTools" allowDefinition="MachineToApplication" allowLocation="false" type="EPiServer.ClientTools.ConfigurationHandler,EPiServer" />
    </sectionGroup>
  </configSections>
  <episerver>
    <clientTools>
      <filters>
        <filter pageTypes="*" extensions="*" src="Util/HtmlFilters/WordHtml.config" />
      </filters>
      <wizards>
        <wizard pageTypes="3" extensions="doc" src="Util/ClientTools/Wizard/Default.config" />
      </wizards>
      <scripts>
        <script pageTypes="*" extensions="doc" src="Util/ClientTools/Components/EPiServer.Word.wsc" />
      </scripts>
    </clientTools>

EPiTrace logger