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


Section downloads lists files from a repeater. Chunk: pagebuilderpro_downloads. Requires PageBuilder Pro.
The file field exposes the media record url on the site.
| Field | Type | Required | Purpose |
|---|---|---|---|
title | text | no | Section title |
items | repeater | yes | Files |
items.title | text | yes | Name |
items.file | file | yes | File |
items.description | textarea | no | Description |
The list is ul.pb-downloads__list. file may be a string or an object with url. When the URL is empty, the title stays a <span>, not a link. An empty repeater leaves an empty list.
{
"title": "Files",
"items": [
{
"title": "Price list",
"file": { "url": "assets/files/price.pdf" },
"description": "PDF, 1 MB"
}
]
}