Skip to main content
NICE CXone Expert
Expert Success Center

Structure Report Template errors

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.

  1. Open the page in edit mode and place your cursor at the bottom of the page.
  2. Select Style > DekiScript from the editor toolbar.
  3. 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:

  1. Open the page in edit mode and find the DekiScript code template('Expert/IDF3/Views/Guide');
  2. Change the word "Guide" in the code to "Category".

If the page should be a Guide:

  1. Expand Page settings.
  2. Change the Page type to Guide.

Guide errors

Page with page type Guide missing template call

To resolve this error, add Guide DekiScript code.

  1. Open the page in edit mode and place your cursor at the bottom of the page.
  2. Select Style > DekiScript from the editor toolbar.
  3. 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:

  1. Open the page in edit mode and find the DekiScript code template('Expert/IDF3/Views/Guide');
  2. Change the word "Category" in the code to "Guide".

If the page should be a Category:

  1. Expand Page settings.
  2. Change the Page type to Category.
  • Was this article helpful?