Receiving 'Error: Nested Editable Element: ...' when editing a template | Community
Skip to main content
KCS_Integration
Level 2
May 3, 2020

Receiving 'Error: Nested Editable Element: ...' when editing a template

  • May 3, 2020
  • 0 replies
  • 1378 views

Issue

Issue Description
When validating the HTML of a template, you receive an error of 'Error: Nested Editable Element: ...' with the id of the element following causing you to not be able to approve the template.
 

Solution

Issue Resolution

This is due to having an element with a 'mkto...' class nested inside another element with a 'mkto...' class. Below is an example: 


 

<div class="mktEditable">

     <div class="mktEditable"></div>

</div>


 

You will need to remove the 'mkto...' class reference from one of the elements to be able to pass validation and approve the draft as in the corrected example below: 
 

<div class="mktEditable">

     <div class="newClassName"></div>

</div>
 


This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.