Structure Report Template errors
- Applies to:
- All MindTouch Versions
- Role required:
- Draft Contributor
Template errors are identified by the site structure analysis report.
Category errors
Page with page type Category missing template call
To resolve this error, add Category DekiScript code.
- Open the page in edit mode and place your cursor at the bottom of the page.
- Select Style > DekiScript from the editor toolbar.
- Paste the following code into the DekiScript block:
template('Expert/IDF3/Views/Category');
Page with page type Category references Guide template
To resolve this error, the DekiScript code must match the page type.
If the page should be a Category:
- Open the page in edit mode and find the DekiScript code
template('Expert/IDF3/Views/Guide');
- Change the word "Guide" in the code to "Category".
If the page should be a Guide:
- Expand Page settings.
- Change the Page type to Guide.
Guide errors
Page with page type Guide missing template call
To resolve this error, add Guide DekiScript code.
- Open the page in edit mode and place your cursor at the bottom of the page.
- Select Style > DekiScript from the editor toolbar.
- Paste the following code into the DekiScript block
template('Expert/IDF3/Views/Guide');
Page with page type Guide references Category template
To resolve this error, the DekiScript code must match the page type.
If the page should be a Guide:
- Open the page in edit mode and find the DekiScript code
template('Expert/IDF3/Views/Guide');
- Change the word "Category" in the code to "Guide".
If the page should be a Category:
- Expand Page settings.
- Change the Page type to Category.