The Avada Website Builder is 100% WCAG 2.1 compliant and ready.
Web Content Accessibility Guidelines (WCAG) 2.1 covers a wide range of recommendations for making Web content more accessible. Following these guidelines will make content more accessible to a wider range of people with disabilities, including accommodations for blindness and low vision, deafness and hearing loss, limited movement, speech disabilities, photosensitivity, and combinations of these, and some accommodation for learning disabilities and cognitive limitations; but will not address every user need for people with these disabilities. These guidelines address accessibility of web content on desktops, laptops, tablets, and mobile devices. Following these guidelines will also often make Web content more usable to users in general.
WCAG 2.1 compatibility means that core Avada features will not break WCAG rules at all, whereas color schemes, content setup etc., is up to the user/designer maintaining the site for accessibility.
Author 诗语
Input Field – link_selector
You can use the link_selector input field to allow users to select the internal links from the native WP Link selector and make it easier for them to search the entire posts/pages list. See the below example for how you can use the link_selector input field.
ExampleCopy to Clipboardarray(
'type' => 'link_selector',
'heading' => esc_attr__( 'Link', 'fusion-builder' ),
'description' => esc_attr__( 'Add a short description for the field.', 'fusion-builder' ),
'param_name' => 'url',
'value' => '',
)x 1array(23 'type' => 'link_selector',45 'heading' => esc_attr__( 'Link', 'fusion-builder' ),67 'description' => esc_attr__( 'Add a short description for the field.', 'fusion-builder' ),89 'param_name' => 'url',1011 'value' => '',1213)Params type
( string ) input type. heading
( string ) Setting title. description
( string ) Short description about the setting field. param_name
( string ) Attribute name to be used in the shortcode. value
( string ) Default value for the url to be used.
Input Field – multiple_select
You can use the multiple_select input field to allow users to select multiple options from a dropdown of pre-defined values. See the below example on how you can use multiple_select input field –
ExampleCopy to Clipboardarray(
'type' => 'multiple_select',
'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),
'description' => esc_attr__( 'A short description of the field.', 'fusion-builder' ),
'param_name' => 'styles',
'value' => array(
'green' => esc_attr__( 'Green', 'fusion-builder' ),
'darkgreen' => esc_attr__( 'Dark Green', 'fusion-builder' ),
'orange' => esc_attr__( 'Orange', 'fusion-builder' ),
'blue' => esc_attr__( 'Blue', 'fusion-builder' ),
'red' => esc_attr__( 'Red', 'fusion-builder' ),
),
)x 1array(23 'type' => 'multiple_select',45 'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),67 'description' => esc_attr__( 'A short description of the field.', 'fusion-builder' ),89 'param_name' => 'styles',1011 'value' => array(12 'green' => esc_attr__( 'Green', 'fusion-builder' ),13 'darkgreen' => esc_attr__( 'Dark Green', 'fusion-builder' ),14 'orange' => esc_attr__( 'Orange', 'fusion-builder' ),15 'blue' => esc_attr__( 'Blue', 'fusion-builder' ),16 'red' => esc_attr__( 'Red', 'fusion-builder' ),17 ),1819)Parameters type
( string ) input type. heading
( string ) Setting title. description
( string ) Short description about the setting field. param_name
( string ) Attribute name to be used in the shortcode. value
( array ) Array of pre-defined values.
Input Field – date_time_picker
You can use the date_time_picker input field to allow users to select date and time. See the below example about how you can use thedate_time_picker input field.
ExampleCopy to Clipboardarray(
'type' => 'date_time_picker',
'heading' => esc_attr__( 'Select date and time', 'fusion-builder' ),
'description' => esc_attr__( 'Add a short description for the field.', 'fusion-builder' ),
'param_name' => 'date_time',
'value' => '',
)x 1array(23 'type' => 'date_time_picker',45 'heading' => esc_attr__( 'Select date and time', 'fusion-builder' ),67 'description' => esc_attr__( 'Add a short description for the field.', 'fusion-builder' ),89 'param_name' => 'date_time',1011 'value' => '',1213)Parameters type
( string ) input type. heading
( string ) Setting title. description
( string ) Short description about the setting field. param_name
( string ) Attribute name to be used in the shortcode. value
( string ) Default value for the date/time to be used.
Input Field – radio_image_set
You can use the radio_image_set input field to allow users to select the image as an option. See the below example for how you can use the radio_image_set input field.
ExampleCopy to Clipboardarray(
'type' => 'radio_image_set',
'heading' => esc_attr__( 'Radio Image Test', 'fusion-builder' ),
'description' => esc_attr__( 'Add a short description for the field.', 'fusion-builder' ),
'param_name' => 'images',
'value' => array(
'pattern1' => get_stylesheet_directory_uri(). '/assets/images/patterns/pattern1.png',
'pattern2' => get_stylesheet_directory_uri(). '/assets/images/patterns/pattern2.png',
),
'width' => '48px',
'height' => '48px',
)x 1array(23 'type' => 'radio_image_set',45 'heading' => esc_attr__( 'Radio Image Test', 'fusion-builder' ),67 'description' => esc_attr__( 'Add a short description for the field.', 'fusion-builder' ),89 'param_name' => 'images',1011 'value' => array(1213 'pattern1' => get_stylesheet_directory_uri(). '/assets/images/patterns/pattern1.png',1415 'pattern2' => get_stylesheet_directory_uri(). '/assets/images/patterns/pattern2.png',1617 ),1819 'width' => '48px',2021 'height' => '48px',2223)Parameters type
( string ) input type. heading
( string ) Setting title. description
( string ) Short description about the setting field. param_name
( string ) Attribute name to be used in the shortcode. value
( array ) Array of image id and the image url. Image id from the array will be stored in the shortcode, so you can get the url from it. width
( string ) The width for the image being displayed in the setting field. This is useful if you want to display multiple fields with different image sizes. height
( string ) The height for the image being displayed in the setting field. This is useful if you want to display multiple fields with different image sizes.
How To Use Avada Studio
Avada Studio is an awesome design feature, that allows you to add pre-built, professionally designed content blocks virtually anywhere into your site. These content blocks are as simple as a single element, as complex as a full page template, and everywhere in between. New content blocks will also be added regularly, and they are easy to use and customize. This huge and ever increasing library of content will help you build your sites even faster, with top notch designs, right out of the box.
Read on to discover the different types of Avada Studio content, where to find them, and how to use them. And watch the video below for a visual overview.,avada.studioIt all starts at avada.studio. Here, you can see an overview of the Avada Studio content, and you can sort, browse and preview the full range of available content. The website is loaded with design inspiration, and will be updated regularly with new content blocks.
On the far left, you can see the eleven types of Studio content – Templates, Headers, Page Title Bars, Content Sections, Footers, Containers, Columns, Elements, Icons, Forms, and Post Cards. Next to this are the categories for that content type. You can sort the content blocks into their various styles to help you refine your selection. In the main window you can see a preview of the various content blocks. Just click on one to get a full width functioning preview of the particular block.
Rome wasn』t built in a day, and while there is a good amount of content to kick Avada Studio off, as the content grows, this will become an amazing source of design inspiration, all of which is also available to you directly from within your Avada website.,Avada Dashboard > StudioThe Studio page within Avada is available from the Avada Dashboard. You will have to have a registered copy of Avada to access this area. Like the avada.studio website, this area allows you to sort, browse, and preview the Studio content, but with the added ability to save your favourite content directly into your Avada Library.
This time the content types are arrayed across the top, but with the same sort and preview functionality as the studio website. The magnifying glass icon allows you to preview the individual content blocks, while the Library icon allows you to save content blocks directly into the Avada Builder Library for future use. You don』t have to save anything from here, as all the content is available to be added through the Avada Library when building your content in Avada Builder (with the single exception of icons). But it』s an easy way to save preferred content blocks as you are browsing.
New Avada Studio content will be added to this area as new designs are created, and there is also a Sync Avada Studio button at the top of the page to ensure you have the latest content.,Adding Avada Studio ContentAvada Studio Content Blocks are all added to your site through the Avada Builder, and the Avada Library. How you add Studio content depends slightly on the type of content it is. There are eleven types of Studio content, which can be gouped into six areas, covering every area of Avada. Let』s look at them separately.
Avada Studio Page TemplatesAvada Studio Headers, Page Title Bars, Content Sections & FootersAvada Studio Containers, Columns & ElementsAvada Studio IconsAvada Studio FormsAvada Studio Post CardsAvada Studio Off Canvas,Avada Studio Page TemplatesThese are accessed from a blank page, via the Avada Studio Button on the Starter page, or at any time on a normal page from the Avada Library icon on the Toolbar and then the Studio tab. These are full page templates.
To add this page template content, just mouse over the desired template and replace any existing content, or add it below or above any existing content. A dialogue appears, showing the import process, and the content appears in the builder.
One thing to note here is the Avada Library > Websites tab. This is simlar, but diffferent to Avada Studio Content. Both are full page templates, but here, you can import any of the individual pages from any of the eighty plus prebuilt websites. This area has also recently had a makeover, and with Avada 7.5, this content now imports with images.,Avada Studio Headers, PTBs, Content Sections & FootersThis type of Studio content is designed to be added to any one of the four types of Layout Sections, for use in Avada Layouts. If you are on a new Layout Section, you can add a prebuilt Studio Header, Page Title Bar, Content Section or Footer respectively, by clicking on the Avada Studio buton. You can also access the Studio Content at any time by opening the Avada Library from the toolbar and heading to the Studio tab.
These prebuilt, professionally designed Layout Sections can then be edited and customized to suit your content. Once you have completed them, just save them. To use them on your site, they would then need to be assigned to a Global or Conditional Layout at Avada > Layouts.,Avada Studio Containers, Columns & ElementsThis type of Studio content is designed to be added in the normal flow of building page content. When you add a new Container, Column or Element, just switch to the Studio tab, and there you will have access to the full range of the respective Studio content blocks.
This content can help you quickly build pages with great design and functionality, wthout having to build it all from scratch.,Avada Studio IconsIcon Studio content is a little different than the others. These content blocks need to be saved from the Avada Studio page, found at Avada Dashboard > Studio. Icon sets saved here are saved to the Icon page.
Then, you can access any of the icons in the imported custom icon set through any place were you find the Icon picker. Many Elements have an icon option, as well as the Icon Element. Just look at the sets across the top of the Icon Picker and you will see any custom icon sets that have been added to Avada.,Avada Studio FormsAvada Studio Forms can be saved directly to the Forms Builder page from the Studio page, but these can also be added when creating a new Avada Form. Just click the Avada Studio button from the Form Builder starter page to access the Studio forms, and add your preferred form. You can also acess the Studio tab through the Library when there is content on the page.
Of course, the imported Studio forms will need to be customized for your content and submission preferences, and then once they are finished, you can add them into your content with the Avada Form Element.,Avada Studio Post CardsAvada Studio Post Card content is added in a similar way. You can save Post Card Content directly to the Avada Library from the Avada Dashboard > Studio page, or when building a new Post Card.
There is no Starter Page when adding Post Cards, so the way to access Studio content here is to access the Avada Library and add a Post Card from there. These Post Card designs can be used directly as they are, by inserting them into your Layout Sections with the Post Card Element, or they can of course be first customized to suit your needs.,Avada Studio Off CanvasAvada Studio Off Canvas content is the latest addition to Avada Studio. You add Off Canvas Studio Content directly from the Starter Page of the Avada Off Canvas Builder.
There is a range of Off Canvas designs for you to load, from Popups, and various types of Sliding Bars.,ConclusionWe think Avada Studio is a real gamechanger for Avada users. This rapidfire way of deploying professionally designed content into your site will speed up your workflow immensely, and also ensure your designs are of the highest standard.
Input Field – radio_button_set
You can use the radio_button_set input field to allow users to select an individual option from a list of the pre-defined options. See the below example on how you can use the radio_button_set input field –
ExampleCopy to Clipboardarray(
'type' => 'radio_button_set',
'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),
'description' => esc_attr__( 'A short description of the field.', 'fusion-builder' ),
'param_name' => 'display_radio',
'value' => array(
'yes' => esc_attr__( 'Yes', 'fusion-builder' ),
'no' => esc_attr__( 'No', 'fusion-builder' ),
),
)x 1array(23 'type' => 'radio_button_set',45 'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),67 'description' => esc_attr__( 'A short description of the field.', 'fusion-builder' ),89 'param_name' => 'display_radio',1011 'value' => array(12 'yes' => esc_attr__( 'Yes', 'fusion-builder' ),13 'no' => esc_attr__( 'No', 'fusion-builder' ),14 ),1516)Parameters type
( string ) input type. heading
( string ) Setting title. description
( string ) Short description about the setting field. param_name
( string ) Attribute name to be used in the shortcode. value
( array ) Array of pre-defined values.
Input Field – checkbox_button_set
You can use the checkbox_button_set input field to allow users to select any combination of available options from a list of pre-defined options. See the below example on how you can use checkbox_button_set input field.
ExampleCopy to Clipboardarray(
'type' => 'checkbox_button_set',
'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),
'description' => esc_attr__( 'A short description of the field.', 'fusion-builder' ),
'param_name' => 'styles',
'value' => array(
'green' => esc_attr__( 'Green', 'fusion-builder' ),
'darkgreen' => esc_attr__( 'Dark Green', 'fusion-builder' ),
'orange' => esc_attr__( 'Orange', 'fusion-builder' ),
'blue' => esc_attr__( 'Blue', 'fusion-builder' ),
'red' => esc_attr__( 'Red', 'fusion-builder' ),
),
)x 1array(23 'type' => 'checkbox_button_set',45 'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),67 'description' => esc_attr__( 'A short description of the field.', 'fusion-builder' ),89 'param_name' => 'styles',1011 'value' => array(12 'green' => esc_attr__( 'Green', 'fusion-builder' ),13 'darkgreen' => esc_attr__( 'Dark Green', 'fusion-builder' ),14 'orange' => esc_attr__( 'Orange', 'fusion-builder' ),15 'blue' => esc_attr__( 'Blue', 'fusion-builder' ),16 'red' => esc_attr__( 'Red', 'fusion-builder' ),17 ),1819)Parameters type
( string ) input type. heading
( string ) Setting title. description
( string ) Short description about the setting field. param_name
( string ) Attribute name to be used in the shortcode. value
( array ) Array of pre-defined values.
The Avada Live Workspace
Editing in a Front-End interface is a new way of working for many. With Avada Live, we have designed a modern and unobtrusive workspace that stays out of the way as much as possible. This minimalist approach allows you to see your content and layout clearly, while still giving you access to the tools you need to quickly build your website.
Read on to have a look around the new Avada Live Workspace, or watch the video for a visual overview.,Overview
The Toolbar
Avada Live Workspace
Element Control Icons
Color Coded Element Controls
Editing With The Element Controls
Inline Editing
Preferences & Shortcuts
Navigation
Page Areas Outside The Builder
Conclusion,The ToolbarThe Toolbar runs along the very top of the page in Avada Live. This provides access to many page building tools, in much the way it does in the back-end builder. It is also sticky, so it always remains at the top of the page as you scroll, providing constant access to its important functions. Let』s have a look at this central component of Avada Live.
Left Hand Side
Avada Icon: This has no direct function. Mouse over this icon to see the current Avada version.
Toggle Sidebar: This opens and closes the Sidebar, where you can access the Global Options, Page Options, and the Element Settings.
Library: This accesses the Avada Builder Library.
History: This shows the latest 25 history states, allowing you to step backward throughout your actions.
Preferences: Here you can access the Avada Live Preferences.
Add New: This icon allows you to add a new Post, Page, Portfolio, FAQ, Layout or Element.
Clear Layout: This clears the layout from the page.
Right Hand Side
Support: Offers links to our Getting Started documentation, our Support portal, and the keyboard shortcuts available.
Responsive: This is now a dual purpose tool. Here you can preview the page in responsive modes, in desktop, tablet and phone preview. But this is now also a Responsive Editing Mode, for use with the Responsive Option Sets feature.
Toggle Wireframe: Click this icon to toggle the back-end wireframe in the Front-End Builder.
Preview: Preview mode closes all panels and removes front-end icons to give you a quick, clean page preview.
Publish / Draft: These two buttons allow you to quickly set the publish state of the page, to Draft or Published.
SAVE: The Save Button allows you to save all the work done in the Front-End Builder, including edits to Elements, and theme and page options settings.
Exit: The Exit Button allows you to exit the builder, to the page front-end, the page back-end, or the WordPress dashboard.,Avada Live WorkspaceWhen you are first in Avada Live, the only things that really differentiates it from a front-end page is the Toolbar along the top, and the few icons overlaid on the content. It is when you mouse over these icons, that you can fully see and access the Element Controls.
There are Controls for every part of the page that can be edited. There are Container Controls, Column Controls, and individual Element Controls, as well as Nested Columns and separate controls for both Parent and Children items in Elements that use this structure. Just mouse over a content area and you will see the Element Controls for whatever content is there.
Take a good look at the image below. In this example, we have moused over the Content Box on the far left, and we can see a number of Element Controls:
Individual Content Box Element Controls – Illustrated as A
Content Boxes Parent Element Controls – Illustrated as B
Column Controls – Illustrated as C
Container Controls – Illustrated as D
『Add Element』 Icons – Illustrated as E – Two Add Icon also show on the screen, as those particular columns are empty and are, as such, easily missed.,Element Control IconsWhen you mouse over a Container, Column or Element you see the Element Controls. The initial view consists of a Settings Icon (the pen icon) and an Add Icon (a Plus icon for Elements, and a Column or Container Icon respectively for Columns and Containers.) See the image below for the initial view of all Element Controls.
When you mouse over a control, it expands to show the full range of controls for that item. The majority of these controls are the same for all items, although there are a few specific to the item. For example, all items have Edit, Add, Clone, Library, Delete and Drag icons, with the exception of child elements and individual columns inside a Nested Columns Element, which can』t be saved independently to the library, and so don』t have the Library icon. Also, Columns have an additional control to change the Column Size.
In the image below, you can see the Column Controls, Element Controls and Container Controls.
Column Element Controls
Column Options – This opens the Column Options Panel in the Sidebar, where you can then configure the Column as you wish.
Add Columns – This opens the Add Columns dialog, where you can add any a range of Column sizes and combinations to the parent Container.
Column Size – This opens the Column Size dialog, where you can change the size of the selected Column to anything from 1/1 to 1/6
Clone Column – This duplicates the Column, which is then added directly below the Column cloned.
Save Column – This opens the Library dialog to the Columns tab, where you can save the selected Column.
Delete Column – This deletes the chosen Column from the layout.
Drag Column – This turns the cursor turns into a clutching hand, and you can begin to drag the element around the screen. In fact, any time you see the hand icon, you can drag your content around the page, and guidelines will appear to show you the possible move locations. For more information on this, please see Cloning, Copying & Moving Elements in Avada Live.
Element Controls
Drag Element – This turns the cursor turns into a clutching hand, and you can begin to drag the element around the screen. In fact, any time you see the hand icon, you can drag your content around the page, and guidelines will appear to show you the possible move locations. For more information on this, please see Cloning, Copying & Moving Elements in Avada Live.
Clone Element– This duplicates the Element, which is then added directly below the Element cloned.
Element Options – This opens the Element Options Panel in the Sidebar, where you can then configure the Element as you wish.
Add Element – This opens the Add Element dialog, where you can add any of our Elements to the Column. It will be added directly under the Element you add from.
Save Element – This opens the Library dialog to the Elements tab, where you can save the selected Element.
Delete Element – This deletes the chosen Element from the layout.
Container Element Controls
Drag Container – This turns the cursor turns into a clutching hand, and you can begin to drag the element around the screen. In fact, any time you see the hand icon, you can drag your content around the page, and guidelines will appear to show you the possible move locations. For more information on this, please see Cloning, Copying & Moving Elements in Avada Live.
Delete Container – This deletes the chosen Container from the layout.
Save Container – This opens the Library dialog to the Containers tab, where you can save the selected Container.
Clone Container – This duplicates the Container, which is then added directly below the Container cloned.
Container Options – This opens the Container Options Panel in the Sidebar, where you can then configure the Container as you wish.
Add Container – This opens the Add Container dialog, where you can add an empty Container, or one with any possible combination of Columns already inside.
767,650 Businesses Trust Avada
Get Avada767,650 Businesses Trust Avada
Get Avada767,650 Businesses Trust Avada
Get Avada,Color Coded Element ControlsDepending on the type of page content you are editing, you will also notice some different colors on the Element Controls. This is to help differentiate content at a glance.
Normal Page Content – Blue
Global Items – Cerise
100% Height Scroll Items – Orange
Nested Columns – Dark Blue
Normal Items – Blue
Global Items – Cerise
100% Height Scroll – Orange
Nested Columns – Dark Blue,Editing With The Element ControlsWhen you edit the Options of a Container, Column, or Element (the pen icon), the Element Options panel opens in a Sidebar on the left of the page. If you prefer, you can change the Element Editing Mode setting in the Avada Live Preferences so that it opens in a standalone dialog instead. Once you have set your preferred working position, it will open in that area from then on, unless you change it again.
Now you can edit your element as you would in the back-end editor, with the main difference being you can see the element at the same time, and any changes you make to the element are reflected in real time on the page.
Depending on the Element you are editing, you will have a range of options and tabs which to configure the Element with. Your changes will be visible on the page immediately. When you have completed editing the element, you can just move on to the next Element. There is no Save button at the bottom of the Element Options, as there is now a Global Save button in the top right corner of the Fusion Builder Live Editor. Simply click Save there whenever you wish to commit your changes. Note that this will clear the History States.,Inline EditingWorking with text is a little different. With the Title And Text Block elements, and in fact any elements that have a text component, you can edit directly on the page without the need of any element dialog. Simply click in the text where you want to edit, and start typing. Also, if you select some text, the Inline Editing dialog appears.
To fully understand Inline Editing, please see our Best Practices for Inline Editing in Avada Live document.,Preferences & ShortcutsYou can customize the Avada Live Workspace to some degree, by setting your preferences. This is found in the main Toolbar, under the preferences icon. As you can see from the image below there are a number of preferences you can set, including the position of the Sidebar, and whether the Element Edit controls open in the Sidebar on in their own dialog.
There are also a range of shortcuts that can speed up your workflow in Avada Live. These can be found on the Toolbar under Support > Shortcuts.,NavigationIn Avada Live, you don』t need to return to the WordPress dashboard to navigate to new pages. Once you have edited and saved a page, you can simply navigate to another page using the main menu and keep editing. If the Header Icons are blocking the menu, just click on the Preview Icon and then you can see the menu without any icons interfering.
You can also navigate to other linked page on buttons by holding down Cmd/Ctrl while clicking on the button.
When leaving Avada Live, the Exit Icon gives you three choices – to leave to the page front end, the back end, or the WordPress Dashboard.,Page Areas Outside The BuilderThere are also areas of the page that are not directly editable in Avada Builder, as their content is generated via the Global Options, or other areas of WordPress. (You can easily see these areas see when using the Wireframe View). These are areas like the Header, the Footer, Sidebars, and Sliding Bars.
In Avada Live, we have added a series of icons to these areas, to enable fast access to these areas in WordPress or Avada to make changes.
Header Control Icons (from the left): Edit Header Layout, Edit Logo, Edit Main Menu, Add Slider, Add Page Title Bar. If you have a Page Title Bar or Slider on the Page, these icons will not be on this bar, but instead, relevant icons will be on the Page Title Bar and Slider respectively.
Header Layout – If your site has a Custom Header Layout, then there will be a single icon to enable you to edit the active Header Layout Section directly from the page. This will be the same for Page Title Bars, and Footers.
Footer, Sidebar & Sliding Bar Control Icons (from the left): Edit Footer, Edit Footer Widgets,ConclusionAs you use Avada Live, the workflow and controls will quickly become logical and evident. The beauty of the design of this front end builder is that it stays out of the way as much as possible, yet everything you need is right at your fingertips.
Watch our Avada Live videos and read our full range of Avada Live documentation for more information, and if you need to, you can always submit a support ticket, and we will be glad to assist you.
Input Field – select
You can use the select input field to allow users to select option from a dropdown of the pre-defined values. See the below example about how you can use select input field –
ExampleCopy to Clipboardarray(
'type' => 'select',
'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),
'description' => esc_attr__( 'This field allows you to display dropdown of the pre-defined values.', 'fusion-builder' ),
'param_name' => 'styles',
'value' => array(
'green' => esc_attr__( 'Green', 'fusion-builder' ),
'darkgreen' => esc_attr__( 'Dark Green', 'fusion-builder' ),
'orange' => esc_attr__( 'Orange', 'fusion-builder' ),
'blue' => esc_attr__( 'Blue', 'fusion-builder' ),
'red' => esc_attr__( 'Red', 'fusion-builder' ),
),
) 1array(2 'type' => 'select',3 'heading' => esc_attr__( 'Select styles', 'fusion-builder' ),4 'description' => esc_attr__( 'This field allows you to display dropdown of the pre-defined values.', 'fusion-builder' ),5 'param_name' => 'styles',6 'value' => array(7 'green' => esc_attr__( 'Green', 'fusion-builder' ),8 'darkgreen' => esc_attr__( 'Dark Green', 'fusion-builder' ),9 'orange' => esc_attr__( 'Orange', 'fusion-builder' ),10 'blue' => esc_attr__( 'Blue', 'fusion-builder' ),11 'red' => esc_attr__( 'Red', 'fusion-builder' ),12 ),13)Parameters type
( string ) input type. heading
( string ) Setting title. description
( string ) Short description about the setting field. param_name
( string ) Attribute name to be used in the shortcode. value
( array ) Array of pre-defined values.