Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Note: This topic has no later version.
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.
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:
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:
<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>
Last updated: Mar 25, 2013