fusion_builder_shortcodes_categories()

fusion_builder_shortcodes_categories()

Copy to Clipboardfusion_builder_shortcodes_categories( string $taxonomy, bool $empty_choice, string $empty_choice_label ) 1fusion_builder_shortcodes_categories( string $taxonomy, bool $empty_choice, string $empty_choice_label )Retrieve a list of category objects for defined taxonomy. Display a category list as element option.
Params$taxonomy
(string) (Required) Taxonomy to retrieve terms for.
$empty_choice
(bool) Add empty option to a returned category list. Default: false.
$empty_choice_label
(string) Text label for empty option in a returned category list. Default: 「Default」.Copy to Clipboardfusion_builder_map(
array(
'name' => esc_attr__( 'Fusion Builder Element', 'fusion-builder' ),
'shortcode' => 'fusion_text',
'icon' => 'fusiona-font',
'preview' => PLUGIN_DIR . 'js/previews/fusion-text-preview.php',
'preview_id' => 'fusion-builder-block-module-text-preview-template',
'allow_generator' => true,
'params' => array(
array(
'type' => 'select',
'heading' => esc_attr__( 'Category', 'fusion-builder' ),
'description' => esc_attr__( 'Select a category of posts to display.', 'fusion-builder' ),
'param_name' => 'category',
'value' => fusion_builder_shortcodes_categories( 'category', true, esc_attr__( 'All', 'fusion-builder' ) ),
'default' => '',

),
),
)
);xxxxxxxxxx21 1fusion_builder_map( 2    array(3        'name'            => esc_attr__( 'Fusion Builder Element', 'fusion-builder' ),4        'shortcode'       => 'fusion_text',5        'icon'            => 'fusiona-font',6        'preview'         => PLUGIN_DIR . 'js/previews/fusion-text-preview.php',7        'preview_id'      => 'fusion-builder-block-module-text-preview-template',8        'allow_generator' => true,9        'params'          => array(10            array(11                'type'        => 'select',12                'heading'     => esc_attr__( 'Category', 'fusion-builder' ),13                'description' => esc_attr__( 'Select a category of posts to display.', 'fusion-builder' ),14                'param_name'  => 'category',15                'value'       => fusion_builder_shortcodes_categories( 'category', true, esc_attr__( 'All', 'fusion-builder' ) ),16                'default'     => '',17 18             ),19       ),20   ) 21);

How To Integrate HubSpot With Avada Forms

How To Integrate HubSpot With Avada Forms

A very useful feature of Avada Forms, is the ability to connect your HubSpot account to Avada Forms, and then configure a form to automatically add any form submissions into your Contacts in HubSpot. Read below for specific details of how this works, and watch the video for a visual overview..,Connecting Your AccountThe first step is to connect Avada Forms to your HubSpot account. To do this, head to Forms > HubSpot in the Avada Global Options. Here you will find the HubSpot API options, where you can select a method to connect to your HubSpot account. You can choose from OAuth, or API Key. OAuth is our recommended option, but you can choose either method. If you choose OAuth, a 「Connect with HubSpot」 button will appear. Just click on this, and a page will open in another tab in your browser, where you can sign into your HubSpot account, and you can then choose the account you wish to connect Avada Forms to.
If you choose API Key instead a HubSpot API Key field will appear, where you can enter your HubSpot API Key. There is also a link to the HubSpot Knowledge Base that shows you the steps to find your API Key.
In both cases, Avada Forms will be connected to your HubSpot account, and you will find yourself back in the Global options with a message confirming the connection. Make sure to save your changes.
767,636 Businesses Trust Avada
Get Avada767,636 Businesses Trust Avada
Get Avada767,636 Businesses Trust Avada
Get Avada,HubSpot Submission OptionsOnce you are connected to HubSpot, you will then find a HubSpot Action field in the Submission area in the Form Options panel. The two options you will see are None, and Create or Update Contact. If you select that option, a range of HubSpot mapping options will appear beneath it. These will show each Form Field Label, and a mapping option beneath it. For this to work, you must have an Email field in your form.
In each field you want mapped, select the corresponding Field in your HubSpot account for it to be mapped to. Fields that show Automatic Property will attempt to map fields automatically by matching labels, but clicking on this will reveal a dropdown list of both common and other HubSpot fields, and here you can specifically map each email form fields to the specific HubSpot field.
IMPORTANT NOTE: Note that your form MUST have an email field to be able to add contacts to your HubSpot account.Once you are done mapping fields, just save your changes, and the next time someone submits the form, their contact details will be added (or updated if their email address is already listed in the Contacts) in your HubSpot account. The advantage of this, is that you then have access to the full range of marketing actions for each contact in you Hubspot account.
This is a powerful feature for users of Avada and HubSpot, so check it out. To see more about installing or connecting HubSpot to your Avada website, check out our How To Use HubSpot with Avada doc, or for a broader overview, check out the Turn Your Avada Website Into A Marketing Powerhouse With HubSpot blog post.,Useful Links & Resources
The Avada Form Builder
Avada Form Local OptionsAvada Form Global OptionsAvada Form Element

Footer Parallax Options

Footer Parallax Options

There are a range of parallax options available for the footer area in Avada. These can be found at Options > Footer > Footer Special Effects. Read on for an explanation of each one.
NOTE. If you are building your Footer using Avada Layouts, the Footer Special Effects can be found in the Layout Section options.Footer Parallax EffectThis option creates a fixed footer, with a parallax scrolling effect. The footer is fixed at the bottom of the viewport, and it reveals itself as you scroll down and the end of the page content is reached. You can see this effect in the footer on several of the demos, including the Nightclub & Landscaper demos.
Parallax Background ImageThis option creates a normal footer, with parallax settings for the footer background image. So as you scroll down to the footer, the background image (set in Footer > Footer Background Image) is fixed and does not scroll with the footer. You can see an example of this in the footer of the Gallerie demo.
Sticky FooterThe Sticky Footer option pins the footer to the bottom of the viewport on pages where there is minimal content. This stops the footer from sitting halfway up the viewport on such pages. On longer pages, it acts like a normal footer. IMPORTANT: This will not work properly when using a Left or Right Side Header layout and the side header is larger than the viewport.
Sticky Footer and Parallax Background ImageThis is the same as the Sticky Footer Option, with the added addition of a parallax (fixed) background image in the footer.

fusion_builder_update_element()

fusion_builder_update_element()

If you want to update any existing element setting options, you can simply use this function and the values will get appended to the existing settings for that element.
The functionCopy to Clipboardfusion_builder_update_element( $shortcode_tag, $param_name, $values_to_append ); 1fusion_builder_update_element( $shortcode_tag, $param_name, $values_to_append );Basic usageCopy to Clipboardfunction update_element_options() {

// Example of how to add or modify options to existing element in Fusion Builder.

if ( function_exists( 'fusion_builder_update_element' ) ) {

fusion_builder_update_element( 'fusion_button', 'color', array( 'cyan' => esc_attr__( 'New - Cyan', 'fusion-builder' ) ) );

fusion_builder_update_element( 'fusion_button', 'color', array( 'black' => esc_attr__( 'New - Black', 'fusion-builder' ) ) );

fusion_builder_update_element( 'fusion_button', 'element_content', 'Sample Button' );

}

}

add_action( 'fusion_builder_before_init', 'update_element_options', 11 );​x 1function update_element_options() {2​3  // Example of how to add or modify options to existing element in Fusion Builder.4​5  if ( function_exists( 'fusion_builder_update_element' ) ) {6​7    fusion_builder_update_element( 'fusion_button', 'color', array( 'cyan' => esc_attr__( 'New - Cyan', 'fusion-builder' ) ) );8​9    fusion_builder_update_element( 'fusion_button', 'color', array( 'black' => esc_attr__( 'New - Black', 'fusion-builder' ) ) );10​11    fusion_builder_update_element( 'fusion_button', 'element_content', 'Sample Button' );12​13 }14​15}16​17add_action( 'fusion_builder_before_init', 'update_element_options', 11 );The above example will add the color option 「Black」 and 「Cyan」 in the colors dropdown for the button element. Which will output the color class name as 「fusion-black」 and 「fusion-cyan」, which you can use to customize the color for your button.
This is a rather simple solution if you want to use the custom color combination buttons on your site.
Function Parameters$shortcode_tag
( string ) Registered shortcode name in Avada Builder.$param_name
( string ) Param name to be altered. Check shortcode to get the param name.$values_to_append
( array | string ) Value to be set as default or append to the existing array.

How To Integrate MailChimp With Avada Forms

How To Integrate MailChimp With Avada Forms

A very useful feature of Avada Forms, is the ability to connect your Mailchimp account to Avada Forms, and then configure a form to automatically add any form submissions directly into your Contacts in your Mailchimp account. Read below for specific details of how this works, and watch the video below for a visual overview.,Connecting Your AccountThe first step is to connect Avada Forms to your Mailchimp account. To do this, head to Forms > Mailchimp in the Avada Global Options. Here you will find the Mailchimp API options, where you can select a method to connect to your Mailchimp account. You can choose from OAuth, or API Key. OAuth is our recommended option, but you can choose either method. If you choose OAuth, a 「Connect with Mailchimp」 button will appear. Just click on this, and a page will open in another tab in your browser, where you can sign into your Mailchimp account, and you can then choose the account you wish to connect Avada Forms to.
If you choose API Key instead a Mailchimp API Key field will appear, where you can enter your Mailchimp API Key. There is also a link to the Mailchimp Knowledge Base that shows you the steps to find your API Key.
In both cases, once you authorize the connection, Avada will connect to your Mailchimp account, and you will find yourself back in the Global Options with a message confirming the connection. Make sure to save your changes.
767,657 Businesses Trust Avada
Get Avada767,657 Businesses Trust Avada
Get Avada767,657 Businesses Trust Avada
Get Avada,Mailchimp Submission OptionsOnce you are connected to Mailchimp, you will then find a Mailchimp Action field in the Submission area in the Form Options panel of an individual form.
To get your form submission contacts to be automatically added to Mailchimp, you need to do a few things.
1. Choose the Create/Update Contact Action.
2. Choose a List to send them to.
3. Optionally, enable the Double Opt-In option.
4. Map the fields in your form to the fields in your Mailing List.
Towards the bottom of the Submission Panel you will see a notice that you are connected to Mailchimp. Directly under this, is the Mailchimp Action option, which has two options – None, and Create / Update Contact. If you select that second option, a Mailchimp List option will appear below. Here, choose the Mailing List you want to add the contacts to.
Under this, there is a Double Opt-in option, which if enabled, will mean that everyone who submits the form will receive a follow-up email with a confirmation link to verify their subscription.
Finally, under this, you will see a range of Mailchimp mapping options. There will be one for each Form Field, with a mapping option beneath it. For this to work, you must have an Email field in your form.
In each field you want mapped, select the corresponding Field in your Mailchimp account for it to be mapped to. By default, fields will show Automatic Field, and will attempt to map fields automatically by matching labels, but clicking on this will reveal a dropdown list of both common and other Mailchimp fields, and here you can specifically map each email form fields to the specific Mailchimp field, as seen below.
IMPORTANT NOTE: Note that your form MUST have an email field to be able to add contacts to your Mailchimp account.Once you are done mapping fields, just save your changes, and the next time someone submits the form, their contact details will be added (or updated if their email address is already listed in the Contacts) in your Mailchimp account. The advantage of this, is that you then have access to the full range of marketing actions for each contact in your Mailchimp account. This is a powerful feature for users of Avada and Mailchimp, so check it out.,Useful Links & Resources
The Avada Form Builder
Avada Form Local OptionsAvada Form Global OptionsAvada Form Element

How To Create A Footer in Avada

How To Create A Footer in Avada

The Footer is an important part of a website page. It』s typically on every page of the site, and it』s a good place to add commonly needed information, such as opening hours, common links, etc.
It will greatly depend on your site as to what』s the best content for your footer, but in this document, we will show you the two ways of creating a footer in Avada – the recommended method, of Building a Custom Footer with Avada Layouts, or the old method of using the Avada Footer Options to configure the footer area, and then adding widgets to populate it.,Building A Custom Footer With Avada LayoutsWith Avada Layouts (Avada 6.2 and up) you can create completely custom layouts for your website, including Custom Footers. The main advantage of this is that you can use the full power of the Avada Builder to create your footer, and no longer be limited by any constraints of the Avada Global Options. With Avada Layouts, you can even have multiple footers on your site. You might have a default footer, but then have a Custom Footer for a particular Custom post Type, Category, or even single page. Virtually anything is possible.
See the video below for a rundown of how to Build a Custom Footer using Avada Layouts.,767,657 Businesses Trust Avada
Get Avada767,657 Businesses Trust Avada
Get Avada767,657 Businesses Trust Avada
Get Avada
Building A Footer Using The Avada Footer OptionsThis is the original way to build a footer, before the advent of Avada Layouts. If you want a simple footer, with 1 to 6 columns, populated by widgets, then this is an easy method to use.
It』s a two-step process. Firstly, you head to the Footer section of the Avada Options (Options > Footer) and begin by configuring the footer area. See the Footer Options doc for specifics on all options available for the footer, but basically, you start by deciding how many columns you want in your footer, and then you configure the footer area with the Footer Content, Footer Background Image, and Footer Styling tabs.
The second part of the process is to populate the footer. This is achieved through the use of Widgets. See the Widgets section of the Docs for more info on this, but basically, widgets are small blocks that can contain a variety of content, and you can create your footer by populating widgets, and then adding them into the predefined Footer Widget Areas, found under Appearance > Widgets, from the WordPress dashboard.
See below for an example of a basic footer built using the theme options for the Taxi Demo. You can also see a walkthrough of the process of configuring the footer via the global options in the following video.

Avada Builder Starter Page

Avada Builder Starter Page

From Avada 5.0 and up, the Avada Builder features a compact starter page that will help you get started in no time. In this article, we』ll be briefly going over what you』ll see when you add a new page.
Avada Builder Starter PageThis is the starter page that you』ll see when creating new pages, or editing empty ones. It contains useful and convenient information and links that will help you find your way around the Avada Builder interface. It also contains the 『+ Container』 and 『+ Pre-Built Page』 buttons to get you started.
+ Container Button – Add a Container to the page. Learn more about Containers.
+ Pre-Built Page Button – Access the Library where you can import pre-made pages or elements. Learn more about Importing Single Prebuilt Website Pages.
Icon Control Descriptions – Brief descriptions of frequent icons you』ll encounter throughout the Avada Builder.
Getting Started Video – Watch our Avada Builder Guided Tour video to learn more about the Avada Builder.,Avada Builder Live Starter PageThe Starter Page in Avada Live is almost the same. But when you add a New Page, or edit an empty one in the Live Builder, the Sidebar also opens to the Page Settings tab of the Page Options, where you can give your page a title, choose a parent and/or a template, and add Featured images to your page.

How To Use Conditional Logic In Avada Forms

How To Use Conditional Logic In Avada Forms

With Avada 7.3, Conditional Logic can now be found in Avada Forms. Conditional Logic can be used to create forms that change based on user』s input. You can configure fields to display or hide based on a user』s response to other fields. This allows you to tailor your forms to your users』 specific needs. The advantages of Conditional Logic in Forms is best seen in longer forms. With Conditional Logic, these forms can be shorter and more specific, as they are personalised to the user』s choices. Let』s look at how this works in Avada Forms.,Where To Find It?You will find Conditional Logic on almost every Form Builder Element, under the new Conditionals Tab. As you can see in the screenshot below, when you click on the + Add New Logic button, you are presented with a Conditional Statement dialog, that has a Field option, a Relational Operator selector (Equal To, Not Equal To, Greater Than, and Less Than, and Contains), and a Value field beneath this. Below the Conditional Statement is an AND/OR connective, which you can to combine further Conditional Statements.
There will be an enormously wide variety of situations of where and how this feature could be used. In this document, we will look at a specific example of a Conditional Contact Form on a Photographer』s Website.,Conditional Logic DeterminantsConditional display of Form Elements is determined by the logic entered through the Field, Relational Operators and the Value entered, as well as the AND/OR connective. Before we look at a specific example of how to use Conditional Logic in a Form, let』s first look at the conditional logic determinants individually.
FieldUnder the Select A Field dropdown menu is a list of all Form Element fields in the current Form. These labels are pulled from the Field Label option in the other Form Elements (or Field Name if that is empty). With the Field option, you choose a Field from another Form Element, that you are going to be determining the logic from, that will affect the current field. In our example below, this will be the 『What type of photography do you require『 field.
Relational OperatorsYou will find the Relational Operators directly under the Field option. These five operators determine how the Field and the Value are connected logically.
The choices are Equal To, Not Equal To, Greater Than, and Less Than, and Contains. There are obviously many possible relational operators you can apply to your forms, depending on your circumstances. In the simple example below, we are using the Equal To operator, so the Conditional Element will display if the selected Field is EQUAL TO the inputted Value.
Condition ValueThe Condition Value option is an input field. Here you enter the value you want the selected Field to have for the logic to work. In our example further below, the values entered correspond to one of the available choices of the dropdown list in the Select Fields Option in our chosen 『What type of photography do you require』 field.
But it can be as simple as a text value. So if you want a new Form Element to appear if the First Name Field gets a value of Bob, then you』d simply enter Bob as the Value, and when someone types Bob (or bob) into the First Name field, the conditional field would instantly appear. The value is simply the outputted contents of the field that triggers the logic.
AND/OR ConnectiveYou can make more complex forms of Conditional Forms by using the AND/OR connective. Simply click on + Add New Logic again for a new Conditional Statement to appear under the first, and you can connect them, by using the AND/OR selection. A simple, yet slightly silly example of this would be that IF the First Name value is EQUAL TO Will, AND the Last Name value is EQUAL TO Smith, then a new Text Field Form Element could appear, asking 「Are you THAT Will Smith??』 I』m sure you get the idea…
767,635 Businesses Trust Avada
Get Avada767,635 Businesses Trust Avada
Get Avada767,635 Businesses Trust Avada
Get Avada,How To Add Conditional Logic To A FormOK, so let』s look at a specific example. As we have discussed, the basic idea of conditional logic with forms is that you add conditional logic to a form field to get it to display or hide based on the value of another field. In our example of a Photographer』s Contact Form, there is a section asking the user to select the type of photography they require. Depending on the choice the user makes here, a range of new fields then appear. This personalizes the form and makes completions more likely.
As we can see in Avada Live in the screenshot below, the first Element with Conditional Logic is the Range Field Element. Under the Conditionals tab, we can see that the logic is expressing that IF the 『What type of photography do you require『 field is EQUAL TO the Value of Family Portrait (on location) THEN the Range Field Element displays.
In this example, the three Elements beneath this one also share the same logic, and so when a user selects Family Portrait (on location) on the front end, the four conditional Elements display immediately, as can be seen in the screenshot below.
If however the logic is not true, then the Elements will not display. With this Conditional Form Example, there are different groups of Elements (all in the same Column) that are set to display based on the selection of the Photography Type Field.
So if the user now selects Fashion Shoot (on location) then another range of Elements will appear, as can be seen in the screenshot below, and the previously displayed Elements will no longer display, as their logic is not longer true.
In this way, you can present a range of conditional fields to the form, based on the input of the user.
This was just one simple example of using Conditional Logic in Avada Forms. Using the various other Relational Operators and the AND/OR connective to combine Conditional Statements, the possibilities of Conditional Forms expands to be able to meet a wide range of situations indeed.

Avada Form Builder Elements

Avada Form Builder Elements

Avada Form Builder comes with 20 unique Elements, with which to build your forms. You can also use any of the Avada Design Elements in the Form Builder as well. In this document, we will have a quick look at all the Avada Form Elements, and what they can do. For specific details, options, and examples of each Element, follow the links in the Element descriptions below.,Checkbox FieldA Checkbox Field is used to select any number of answers from a list of choices. You can add options manually, use predefined lists, or bulk import lists. If you only want users to make one selection, use the Radio Field Element instead. See the Registration Form Dark Prebuilt Form for an example of the Checkbox Field Element in use.
View Element Page!View Element Demo Page!,Date FieldThe Date Field Element allows you to enter a formatted date using a date picker calendar option. See the Reservation Form Prebuilt Form for an example of the Date Field Element in use.
View Element Page!View Element Demo Page!,Email FieldAn email field is a single textbox that』s validated to only accept email addresses. Almost all of the Prebuilt Forms use the Email Field Element.
View Element Page!View Element Demo Page!,Hidden FieldThis is an advanced field Element. You can use a hidden field to include unmodified data when a form is submitted. They are hidden from the user completely, but can store a value that is sent along with the form. You could use JavaScript to identify the browser or page id, or many other things.
View Element Page!View Element Demo Page!,Honeypot FieldThe Honeypot Field Element is a security Element you can add to your Avada Form. A honeypot is a field added to the form that the users can』t see (due to CSS or JavaScript which hides the field). Basically, if a spambot fills in a field that valid users can』t see, this alerts us to their activity. So if the honeypot field is filled in, we can confidently reject the form as spam.
View Element Page!View Element Demo Page!,Image Select FieldThe Image Select Field Element allows you to add a range of images to your form, that a user can then select from. You can add multiple images, control their size, allow users to select multiple or just a single image, have certain image pre-selected etc. There are many possible uses for this Element.
View Element Page!View Element Demo Page!,NoticeThe Notice Element is used to display messages after form submission. There is a field for both a success message, and a failure message. They come pre-populated with default messages, or you can totally customize them with your own messages. You will find this Element on almost all the prebuilt forms.
View Element Page!View Element Demo Page!,NumberThe Number Element is a field used to allow the user to enter any numeric value. See the Reservation Prebuilt Form for an example of this in use.
View Element Page!View Element Demo Page!767,669 Businesses Trust Avada
Get Avada767,669 Businesses Trust Avada
Get Avada767,669 Businesses Trust Avada
Get Avada,Password FieldThe Password Field Element is a special text field on a form that doesn』t display what the user types. This value is then passed on in the submission entry. See the Sign Up Prebuilt Form for an example of this Element.
View Element Page!View Element Demo Page!,Phone Number FieldThe Phone Number Field Element is a numeric field used to collect mobile or landline numbers. It does not accept spaces or letters. Examples of this Element can be found in the Registration Form Dark, Standard Contact Form, Sweepstakes Form, and the Reservation Form, to name a few.
View Element Page!View Element Demo Page!,Radio FieldThe Radio Field Element is used to display a list of options for a user to select as a choice. Only one selection is possible. You can see an example of this Element in the RSVP and Survey Prebuilt Forms.
View Element Page!View Element Demo Page!,Range FieldThe Range Field Element defines a slider control between minimum and maximum numeric values. You can see an example of this Element in the Registration Prebuilt Form.
View Element Page!View Element Demo Page!,Rating FieldThe Rating Field Element is used to rate something between a set minimum and maximum number of stars. You can see an example of this Element in the Survey Prebuilt Form.
View Element Page!View Element Demo Page!,reCAPTCHA FieldThe reCAPTCHA Field Element helps protect your website forms from spam and abuse. You must first configure the Global Options found at Avada > Forms > Google reCAPTCHA for this to work.
View Element Page!View Element Demo Page!,Select FieldThe Select Field Element allows users to choose an option from a set of predefined choices. These display in a dropdown list. You can see an example of this Element in the Sign Up Prebuilt Form.
View Element Page!View Element Demo Page!,Submit ButtonThe Submit Button Element is the one required Element in a form, as it is a button for submitting form data to a form-handler. All prebuilt forms have one. Submission Type is controlled in the Local Form Options.
View Element Page!View Element Demo Page!,Text FieldThe Text Field Element is a basic text field you can use to collect information such as a name or address. You can see several examples of this Element in the Sign Up and Upload Prebuilt Forms, as well as several others.
View Element Page!View Element Demo Page!,Textarea FieldThe Textarea Field Element provides a multi-line text box for extended amounts of information. This is used on many of the Prebuilt forms, and is perfect when you need an area for the user to have a large amount of freedom with regards inputting text.
View Element Page!View Element Demo Page!,Time FieldThe Time Field Element allows a user to select a specific time in hours and minutes. You can see an example of this Element in the Reservation Prebuilt Form.
View Element Page!View Element Demo Page!,Upload FieldAllows users to easily upload files via a form. You can control allowed file extensions, and file size. You can see an example of this Element in the Upload Prebuilt Form.
View Element Page!View Element Demo Page!

Avada Builder vs Avada Live

Avada Builder vs Avada Live

IMPORTANT NOTE: With the release of Avada 7.0, we have renamed Fusion Builder to Avada Builder.While Fusion Builder has had a name change, it hasn』t changed otherwise. It still comes with TWO interfaces; the original, wireframe builder, now known as Avada Builder, and the front-end builder, now known as Avada Live. The original Avada Builder will remain, offering you more choice over how you like to edit your pages. Here are the main differences between the two interfaces:,Avada BuilderThe Avada Builder we all know and love hasn』t changed (except for the name :)). This is a back-end wireframe editor that allows you to build content quickly, using our system of Containers, Columns, and Elements. You design and layout your pages as you wish, using our easy to use drag and drop editor, and then preview the result in a new window.
Many of our users are very familiar with this process and find it fast and efficient. But things are always moving forward here at ThemeFusion, and with Avada Live, we have also introduced a new way of building pages.,Avada LiveWith Avada Live, you edit your content directly on the front-end. You can see your layout as you build it, and any changes you make update immediately, as you make them.
Additionally, with Avada Live, you have direct access to the Avada Global Options, as well as the Avada Page Options, on the same page, as you build. This can speed your workflow significantly.
In most other ways, the two builders are essentially the same. There are small interface and workflow differences, but they both use the same Container, Column and Element structure, and controls. The content that both builders generate is also identical, and so there is full compatibility between the two builders. You can even toggle the Wireframe view in Avada Live, which essentially is the back-end builder in the front-end interface.
So with Avada Builder, we have now just doubled your options, giving you two ways to build your website. Welcome to the best of both worlds!
View the 『Avada Builder』 Docs