regions:contentadditional
AJAX
ajax:delayedload ajax:event ajax:navigation ajax:region
Data
data:calendar data:column data:postrepeater data:productbrandrepeater data:productcategoryrepeater data:productrepeater data:repeater data:table data:template data:tree
Forms
forms:address forms:captcha forms:checkbox forms:checkboxgroup forms:codeeditor forms:combobox forms:datepicker forms:dialogbox forms:editbox forms:fileupload forms:form forms:hidden forms:money forms:officeuseregion forms:option forms:password forms:paymentmethod forms:radiobutton forms:radiobuttongroup forms:row forms:searchbox forms:signature forms:slider forms:spinbox forms:submitbutton forms:submitimage forms:submitlink forms:successcontent forms:textarea forms:timepicker
Layout
layout:gallery layout:productgallery layout:rotator layout:stepper layout:stepperpanel layout:tablist layout:tablistitem
Logic
logic:dependency logic:else logic:if logic:include logic:parse logic:variable
Navigation
navigation:breadcrumbs navigation:item navigation:primary navigation:secondary
Personalisation
personalisation:firstname personalisation:fullname personalisation:lastname personalisation:other
Standard
standard:audio standard:embed standard:icon standard:image standard:link standard:script standard:tooltip standard:video
Templates
templates:button templates:card templates:column templates:fancybox templates:faq templates:flexlayout templates:header templates:row templates:section templates:styles templates:teammember templates:testimonial
Regions
regions:content regions:contentadditional
ATTRIBUTES
EXAMPLES
regions:security regions:togglable
Third Party
thirdparty:googlemap thirdparty:googlemapmarker

<regions:contentadditional />

To be used if more content regions are required ontop of an <regions:content>.
Additional content regions define islands of editable content that are separated by elements in the design.

Attributes

id
string
Give this control a unique id. Can be accessed in the client DOM (eg, document.getElementById('myid') or in the server DOM using [? $myid ?] or [? $('myid') ?]).

Examples

Display Blog Author

Manually adding the blog author to the post page

HTML:

<logic:if test="count(\Components\Website\Posts::getAllLinkingToPage(\Components\Website\Pages::currentPageId())) > 0"> <templates:section paddingtop="15rem" paddingbottom="2rem" bgcolor="#3e93ef" color="#fff" style="text-align: center"> <h1>[? $postMain['post_title'] ?]</h1> <time itemprop="datePublished" datetime="[? formatDate($postMain['post_date']) ?]"> Date Posted: [? date('F j, Y', strtotime($postMain['post_date'])) ?]</time> <p>Posted by: <regions:contentadditional id="blog_author" /></p> </templates:section> </logic:if>

Togglable with Additional Region Content

Add a togglable region, which contains an additional editable content region.

HTML:

<regions:togglable id="footer_promotions" defaultvisible="true" label="Display Editable Footer Promo Area"> <regions:contentadditional id="content_additional_1" /> </regions:togglable>