Try our conversational search powered by Generative AI!

Loading...
Area: Optimizely CMS

Recommended reading 
This feature is only supported in Legacy mode in EPiServer 7.

Note: This topic has no later version.

Introduction

This document describes the configuration of the Quick Publishing gadget in EPiServer OnlineCenter. This function makes it possible for occasional users of EPiServer CMS to publish content on the website without having to access edit mode, since the publishing is done from the OnlineCenter Dashboard.

Refer to the Configuration Syntax for an explanation of the syntax used in the description of the configuration elements.

Configuring Page Guides

To use quick publishing you first need to configure one or more page guides. Place the page guide configuration as a sub element of in the <site> section in episerver.config.

The following attributes on the <pageGuide> elements are required:

  • destinationPageId. The ID of the page that will become the parent of the page published.
  • name. A unique name to identify the page guide.
  • pageTypeName. The name of the page type that will be instanced.
  • title. A short descriptive text that explains what the page guide does.

The <visibleProperties> collection contains a list of named properties from  the page type defined in the pageTypeName attribute. These are the properties that the user can assign values to when using the page guide.

Example:

XML
<pageGuides>
  <pageGuide destinationPageId="61"
             name="News"
             pageTypeName="[Public] News item"
             title="Publish a news item">
    <visibleProperties>
       <pageProperty propertyName="PageName" />
       <pageProperty propertyName="MainIntro" />
       <pageProperty propertyName="Author" />
       <pageProperty propertyName="MainBody" />
    </visibleProperties>
  </pageGuide>
  <pageGuide destinationPageId="37"
             name="Blog"
             pageTypeName="[Demo] Blog item"
             title="Publish a blog item">
    <visibleProperties>
       <pageProperty propertyName="PageName" />
       <pageProperty propertyName="MainBody" />
    </visibleProperties>
  </pageGuide>
</pageGuides>

See Also

Do you find this information helpful? Please log in to provide feedback.

Last updated: Mar 25, 2013

Recommended reading