Additional options
Learn how to add options for specific fields
Using the Bricks builder syntax, users can pass one or more arguments to dynamic data using:
ACPT allows the user to specify additional options for certain field types.
Number field
Under the hood, ACPT uses the standard PHP number_format function.
These arguments are supported, please follow this order:
decimals
decimal point
decimal separator
Suppose you want to render the number 1600 as 1,600.00.
Here is how:
Date fields
Specifying the desired date format is possible for every date field.
Example:
The current WordPress date and time formats are used if the date format is not specified.
Currency, Length, and Weight fields
These arguments are supported, please follow this order:
format - the string format (default: full, allowed: full | symbol | value)
decimal separator - the decimal separator (default: .)
thousands separator - the thousands separator (default: ,)
position - the unit of measure position (default: after, allowed: after | before)
Suppose you want to render 1600000USD.
Here are some examples:
If you need numbers in a different format, you can rely on the standard PHP number_format function.
Inside a CODE block, run something like this:
With the correct field name.
Select Multi and Checkbox fields
For Select Multi and Checkbox fields, is possible to specify how to render them.
1. Render as list
The default rendering is as HTML <ul>
. It is possible to specify the CSS classes to <ul>
element:
The element will be rendered as:
If you want to display the list as an ordered list <ol>
:
The element will be rendered as:
2. Render as string
You can display these fields as strings, specifying also the string separator:
To display a field as strings separated by -
, something like that:
foo-bar-baz
Gallery field
It is possible to display a gallery element by specifying its index (count starts from 0).
Example:
This code will render only the second image of the gallery.
Email, Phone, and URL fields
Those fields can also be rendered as simple strings and not links using the string
attribute.
Example:
Text truncate
For every textual field, it is possible to truncate the text.
Example:
Last updated