Skip to content

Image

Displays an image from a URL. Renders as an <img> element with configurable source and alt text.

Properties

PropertyTypeDefaultDescription
srctext''The image URL. Supports expressions.
alttext''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 Logo

Tips

  • Always provide meaningful alt text for accessibility and SEO.
  • Use expressions in src to 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 src will typically be a WordPress media library URL returned by the File Upload widget.