Control Which Landing Page Content Users Can Change
To allow edits to certain parts of your marketing content, lock down areas of your classic layout templates with content regions.
Required Editions
| Available in: All Account Engagement Editions |
Pardot is now known as Marketing Cloud Account Engagement. We wish we could snap our fingers to update the name everywhere, but you can expect to see the previous name in a few places until we replace it, including in the app itself.
To make parts of a layout template editable, add the pardot-region attribute to the HTML element and give it a name. Verify that syntax is complete, and note that regions can’t be nested. Avoid renaming a region that’s used on a landing page, because it can cause content to break.
<p pardot-region="text_block2"> makes the p element
named text_block2 and the elements that it contains editable.To specify which editor types you can use to edit regions, add pardot-region-type="<type>" to the element.
This table lists the supported editors and which HTML tags can be a content region.
| Editors | HTML Tags |
|---|---|
| Link | a |
| Image | img |
| HTML | code, pre |
| Simple (default), Basic (cke-simple) | address, b, big, blockquote, caption, cite, del, dfn, em, h1, h2, h3, h4, h5, h6, i, ins, kbd, p, q, s, samp, span, small, strike, strong, sub, sup, u, var |
| WYSIWYG (default), Simple, HTML, Basic | article, aside, div, dt, dd, figure, figcaption, li, footer, header, main, section, td |
| None | All other tags |
simple attribute restricts this region to the
Simple editor: <p pardot-region="text_block2"
pardot-region-type="simple">Content content content.</p>
