Appearance
Image
Displays an image from a URL. Renders as an <img> element with configurable source and alt text.
Properties
| Property | Type | Default | Description |
|---|---|---|---|
| src | text | '' | The image URL. Supports expressions. |
| alt | text | '' | Alt text for accessibility. Supports expressions. |
Example
Display a product image from your data source:
Src: `{ {row.image_url}}`
Alt: `{ {row.product_name}}`Use a static URL:
Src: https://example.com/logo.png
Alt: Company LogoTips
- Always provide meaningful alt text for accessibility and SEO.
- Use expressions in
srcto display images dynamically from your database:{ {row.photo}}. - Control image dimensions and appearance via the Design tab (width, height, border-radius, object-fit).
- For user-uploaded images, the
srcwill typically be a WordPress media library URL returned by the File Upload widget.