Value Slider
The Value Slider fieldtype allows the user to select a numerical value.
note
The following examples use a field named value_slider_field
. This should be replaced with your field name.
- Twig
- Blade
{{ entry.value_slider_field }}
{{ $entry->value_slider_field }}
Parameters
- Twig
- Blade
{{ entry.value_slider_field.parameters({decimal_place: '2', prefix: 'yes', suffix: 'yes'}) }}
{{ $entry->value_slider_field->parameters(['decimal_place' => '2', 'prefix' => 'yes', 'suffix' => 'yes']) }}
info
See the ExpressionEngine Documentation for more information on the Value Slider fieldtype