Skip to content
Master Addons Logo

Getting Started

  • Can’t see the Master Addon Element inside Elementor Page editor?
  • How To Apply For an Affiliate Account?
  • Active Pro version
  • Installing Plugin

Addons

  • Popup Trigger Widget Settings
  • Off-Canvas Content Widget Settings
  • Logo Slider Widget Settings
  • Progress Bars Widget Settings
  • Image Carousel Settings
  • Featured Product Widget Settings
  • Comparison Table Widget Settings
  • Source Code Widget Settings
  • Advanced Image Widget Settings
  • Gradient Headline Widget Settings
  • Gallery Slider Settings
  • Toggle Content Widget Settings
  • Info Box Widget Settings
  • Timeline Widget Settings
  • Dynamic Table Widget Settings
  • Mailchimp Widget Settings
  • Blockquote Widget Settings
  • Changelog Widget Settings
  • Countdown Timer Widget Settings
  • Current Time Widget Settings
  • Search Widget Settings
  • Filterable Image Gallery
  • Team Slider Widget Settings
  • Counter Up Widget Settings
  • Restrict Content Settings
  • Table of Contents Widget Settings
  • Image Hotspot Widget Settings
  • Image Comparison Widget Settings
  • News Ticker Widget Settings
  • Image Hover Effects
  • Tabs Settings
  • Pricing Table Widget Settings
  • Nav Menu Widget Settings
  • Domain Search Widget Settings
  • Flipbox Widget Settings
  • Tooltip Settings
  • Creative Links Widget Settings
  • Business Hours Widget Settings
  • Contact Form 7 Widget Settings
  • Creative Button Widget Settings
  • Animated Headlines Settings
  • Advanced Accordion Widget Settings
  • Call to Action Widget Settings
  • Progress Bar Widget Settings
  • Blog Posts Widget Settings
  • Team Member Widget Settings
  • Dual Heading Settings

Extensions

  • Icon Library Settings
  • Mega Menu Settings
  • Which Element Extension Settings
  • Post/Page Duplicator Extension Settings
  • Grid Line Extension Settings
  • Glassmorphism Extension Settings
  • Tooltip Extension Settings
  • Wrapper Link Settings
  • Floating Effects Extension Settings
  • Dynamic Tags Settings
  • Display Conditions Extension Settings
  • Entrance Animation Settings
  • Custom Breakpoints Settings
  • Animated Gradient BG Extension Settings
  • Reveal Extension Settings
  • Particles Extension Settings
  • Background Slider Extension Settings
  • Transforms Extension Settings
  • Rellax Extension Settings
  • Positioning Extension Settings
  • Custom CSS Settings

Widget Builder

  • Conditions
  • Twig Syntax
  • Settings Panel Introduction
  • Divider
  • Text Shadow
  • Select2
  • Border
  • Heading
  • Tabs
  • Repeater
  • Visual Choice
  • Background
  • Dimensions
  • Box Shadow
  • Slider
  • Icons
  • Gallery
  • Media
  • Popover Toggle
  • URL Field
  • Date Time
  • Typography
  • Font
  • Color Field
  • Choose
  • Select
  • Switcher
  • Hidden
  • Code
  • WYSIWYG
  • Textarea Field
  • Number
  • Text Field

Theme Builder

  • Comment Form
  • 404
  • Search
  • Archive
  • Single
  • Footer
  • Header

Popup Builder

  • How to Open a Popup After Inactivity in Elementor
  • How to Show an Exit Intent Popup in Elementor
  • How to Open a Popup on Scroll to a Specific Element in Elementor
  • How to Open a Popup on Scroll in Elementor
  • How to Open a Popup on Click in Elementor
  • How to open a popup on page load?
  • Popup Settings & Options

Template Kit

  • How to Import Template Kits in Master Addons
  • How to Disable Elementor Default Fonts and Colors
  • Import Elementor Template Kits
View Categories
  • Home
  • Docs
  • Widget Builder
  • Choose

Choose

Roy Jemee
Updated on September 17, 2026

7 min read

The Choose field adds a row of icon buttons to a custom widget you build with the Master Addons Widget Builder. It’s the same kind of control Elementor uses for text alignment: a few buttons, one active at a time. Use it when there are only two to four options and an icon explains each one faster than a word.

Choose is one of the fields you can use in the free version’s Widget Builder. The free plugin includes a limited Widget Builder, and the full set of fields comes with Master Addons Pro.

Choose field settings in the Master Addons Widget Builder next to the Elementor icon buttons for a callout box widget

What the Choose field does #

  • Adds a row of icon buttons to your widget’s panel in Elementor, one button per option.
  • Shows each option’s title as a tooltip when an editor hovers a button.
  • Saves the key of the picked option, such as center, not its title.
  • Prints that key wherever you place its token, like {{ align }}. The usual approach is to turn it into a CSS class.

New to the builder? Read the Widget Builder overview first, then come back with a widget open.

Before you start #

  • WordPress with Elementor installed and active.
  • Master Addons for Elementor installed and active. The installation guide covers setup.
  • A widget open in the Widget Builder. The example in this guide is a “Callout Box” widget with two Choose fields: align (left, center, right) and icon_position (top or left).

How to add a Choose field #

  1. Go to Master Addons > Widget Builder and open your widget.
  2. Add a section on the Content tab, for example “Callout”. Layout choices also fit well on the Style tab.
  3. Type choose in the field search box on the left.
  4. Drag Choose into the section. Click the pencil on the field to open its settings.
Choose field found by searching choose in the Widget Builder with Alignment and Icon Position fields in the Callout section

A new Choose field isn’t empty. It comes with three alignment options (left, center and right) and Center as the default, so for a simple alignment control you only need to change the label and name.

Choose field options explained #

Choose field options with Label, Name, Description, Unset, Options rows for key, title and icon, and Default Value
  • Label: the text next to the buttons in Elementor, for example “Icon Position”.
  • Name: the field’s unique ID and the name of its token. Use letters, numbers and underscores only, for example icon_position.
  • Description: a hint shown under the buttons in Elementor.
  • Unset: lets editors click the active button again to clear the choice. See the note below before you rely on it.
  • Options: one row per button. Key is the value your template gets, Title is the tooltip, and Icon opens the icon picker. Use the red cross to remove a row and the plus button to add one.
  • Default Value: the option a new copy of the widget starts with. The dropdown shows titles, but the field stores the key.

Under Common Settings you’ll find Show Label, Label Block, Separator and Conditions, which work the same as on other fields.

Pick icons that show up in Elementor #

Clicking an option’s icon opens the Master Addons Icon Picker. Open the Elementor Icons tab and search, for example align, to find alignment and position icons.

Master Addons icon picker filtered to Elementor Icons with align icons for a Choose option

Stick to that tab. The picker also lists Simple Line, Iconic Font, Linear and Material icons, but in our tests those buttons showed up blank in the Elementor panel. Only Elementor Icons displayed.

Keys, titles and Unset #

  • Keep keys short, lowercase and without spaces, such as left or top. They end up in class names.
  • You can rename a title at any time. Changing a key breaks pages that already saved the old one.
  • In our tests, clicking the active button cleared the value even with Unset set to No. Plan for an empty value either way, as shown in the template below.

Use the choice in your template #

The token prints the key, so the cleanest setup is a modifier class. This is the Callout Box HTML:

<div class="callout{% if align %} callout--{{ align }}{% endif %}{% if icon_position %} callout--icon-{{ icon_position }}{% endif %}">
  {% if icon_position %}<span class="callout-icon">!</span>{% endif %}
  <div class="callout-body">
    <p class="callout-title">{{ callout_title }}</p>
    <p class="callout-text">{{ callout_text }}</p>
  </div>
</div>
Widget HTML using the align and icon_position tokens as modifier classes inside if blocks

Each {% if %} skips the class when the value is empty. For Icon Position, an empty value also hides the icon, which is why that field has Unset on. The CSS panel then styles each class:

.callout--left { text-align: left; }
.callout--center { text-align: center; }
.callout--right { text-align: right; }
.callout--icon-top .callout-icon { margin-bottom: 14px; }
.callout--icon-left { display: flex; gap: 18px; align-items: flex-start; }

You can also compare the value directly, for example {% if icon_position == 'left' %}. Compare against the key, never the title.

Leave Selector and Responsive Control off #

  • Selector: for this field it writes color: {{VALUE}};. In our tests, a Selector of .callout-title produced color:center;, which browsers ignore. Unlike some other fields, Choose has no CSS Selectors rows where you could write your own property. Use classes as shown above.
  • Responsive Control: adds device icons so editors can pick a different option on tablet and mobile, but the token only prints the desktop choice. The per-device picks never reach your template.

Use the Choose control in Elementor #

Add the widget to a page, or reload the editor if the page was already open. The buttons sit under your label with the default option highlighted. Hover a button to see its title, and click to switch. The preview updates right away.

Callout Box widget in Elementor with Alignment and Icon Position icon buttons and a Left tooltip

Here is the same callout with different choices:

Callout box on the front end with left alignment, center alignment and the icon on the left

Common use cases #

  • Text alignment for headings, quotes and cards.
  • Image or icon position: top, left or right.
  • Layout direction, such as a row or a column.
  • Small visual variants, such as a light or dark style, when each has a clear icon.

Tips for working with the Choose field #

  • Keep it to four options or fewer. For longer lists, use the Select field.
  • Always handle an empty value. Wrap classes and markup in {% if %}, and give the base class sensible default styles.
  • Write clear titles. The tooltip is the only text editors see for each button.
  • Use Elementor Icons only, so every button has a visible icon.
  • Decide on keys before editors use the widget. Titles and icons can change later, keys can’t.

Frequently Asked Questions #

Is the Choose field available in the free version?

Yes. Choose is one of the fields you can use in the free version’s Widget Builder. The full set of Widget Builder fields comes with Master Addons Pro.

What does the Choose token print?

The key of the picked option, for example center. It prints nothing when no option is selected.

Why are some of my Choose buttons blank in Elementor?

The icon probably comes from a library other than Elementor Icons. In our tests only icons from the Elementor Icons tab showed in the panel. Pick a replacement icon from that tab.

Can I use the Selector option for alignment?

Not for this field. The Selector writes color: {{VALUE}};, so an alignment key becomes an invalid color. Print the key as a class and style that class in the CSS panel.

Why can editors clear the choice when Unset is off?

In our tests, clicking the active button cleared the value even with Unset set to No. Treat an empty value as possible and handle it with {% if %}.

Wrapping up #

Add a Choose field, set short keys with Elementor icons and clear titles, then print the key as a class in your HTML and style each class in the CSS panel. Handle the empty value and the widget stays tidy when an editor clears a choice. For longer lists of options, see the Select field, and check pricing for what each plan includes.

What are your Feelings

Share This Article :

  • Facebook
  • X
  • LinkedIn
  • Pinterest
Still stuck? How can we help?

How can we help?

Updated on September 17, 2026
Color FieldSelect
Table of Contents
  • What the Choose field does
  • Before you start
  • How to add a Choose field
  • Choose field options explained
    • Pick icons that show up in Elementor
    • Keys, titles and Unset
  • Use the choice in your template
    • Leave Selector and Responsive Control off
  • Use the Choose control in Elementor
  • Common use cases
  • Tips for working with the Choose field
  • Frequently Asked Questions
    • Is the Choose field available in the free version?
    • What does the Choose token print?
    • Why are some of my Choose buttons blank in Elementor?
    • Can I use the Selector option for alignment?
    • Why can editors clear the choice when Unset is off?
  • Wrapping up