
PageBuilder
Visual section builder for MODX 3: draft and publish without overwriting resource content


Section how_it_works lists steps from a repeater. Chunk: pagebuilderpro_how_it_works. Requires PageBuilder Pro.
| Field | Type | Required | Purpose |
|---|---|---|---|
title | text | no | Section title |
intro | textarea | no | Intro |
steps | repeater | yes | Steps |
steps.title | text | yes | Step title |
steps.text | textarea | no | Text |
steps.icon | image | no | Icon |
Steps sit in an <ol>. The number is the row index plus 1, with aria-hidden="true". Field icon is type image, not icon. The picture goes through pagebuilder_partial_image. An empty repeater leaves an empty list. intro prints only when set.
{
"title": "How to order",
"intro": "Three steps",
"steps": [
{
"title": "Pick",
"text": "Add a product",
"icon": { "url": "assets/images/step.png" }
}
]
}