Avada Child Theme

Avada Child Theme

IMPORTANT NOTE: If you are having issues with your Child Theme, particularly after updating to Avada 7.2, please see this explanation FAQ. In short, it』s to do with the style sheet being moved, and so a new snippet of code is required.A WordPress child theme allows you to apply custom code changes to your site. Using a child theme ensures that all your customizations will not be overwritten even when you update the parent theme. Continue reading below to learn how to setup your own child theme, and watch the video for a visual overview.
SUPPORT POLICY ON CHILD THEMES: While child themes are a great way to add custom changes to Avada, there are generally used to customize core code from the parent theme. Because of this, please be aware that customizations of this nature fall outside our scope of support and we will be unable to assist you with issues that may arise from it.Overview
What Is A Child Theme?

Downloading and Installing the Avada Child Theme

How To Download Avada Child Theme

Methods Of Modifying A Child Theme

Useful Documentation On Child Themes
What Is A Child Theme?A child theme is a theme that has all the functionality and styling of another theme, called the parent theme, which in our case is Avada. Child themes are the recommended way of modifying the code of an existing theme, because a child theme preserves all custom code changes and modifications even after a theme update.
If you modify code directly in a parent theme, and then update the parent theme, your changes will be lost. Always use a child theme if you intend modifying core code. Child themes can be used for a number of things, such as custom CSS applications, template file modifications, and custom PHP functions and/or hooks. There are a couple of methods to modify a child theme. Child themes don』t guarantee that an update of custom code on the parent theme will not require further maintenance. This is especially true if you copy files from the parent theme to your child theme.

Downloading and Installing the Avada Child ThemeBefore anything else, you must first download and install the Avada child theme to begin making your customizations. The Avada child theme comes with downloading Avada』s Full Package from ThemeForest, and the method of installing it is exactly the same as installing the Avada theme. Please follow the detailed steps below on how to download and install the Avada child theme.
How To Download Avada Child ThemeStep 1 – Login to your ThemeForest account and go to your Downloads tab.
Step 2 – Locate your Avada purchase, and click Download. Choose the 『All Files & Documentation』 option.
Step 3 – Once the .ZIP file is finished downloading, locate it on your computer and extract it. You will then have a folder called Avada_Full_Package.
Step 4 – Navigate to Avada_Full_Package > Avada Theme and you will see an Avada.zip file and an Avada-Child-Theme.zip file.
Step 5 – Before installing the Child Theme, you must first have Avada (the parent theme) installed. You install the child theme using the exact process of installing the parent theme. You can choose to install the theme zip files via WP upload or via FTP upload.
Methods Of Modifying A Child ThemeThere are a several methods you can use to modify a child theme, and we』ll be explaining 3 methods below. These methods are copying files from a parent theme, pluggable functions, and actions and filters. To learn more about each one, please continue reading below.
Method 1: Copying Files From Parent ThemeCopying files from the parent theme to a child theme is a common method to make code customizations. This is the easiest method available, but there are limitations to it. Due to the limitations, we recommend only copying the files inside the templates folder from the parent theme into the child theme.

You can only copy some files to the child theme. In Avada, we have made a decision to make sure that core logical code which can break the theme is not able to be copied into the child theme. This includes the files inside the includes folder.

It is not update-safe (sometimes). Whenever we make major changes to a certain file e.g. header.php in the parent theme, you』ll have to copy the theme file from parent theme again and apply the customizations again. If you don』t do this, there』s a chance that the related feature might not work anymore.
Method 2: Pluggable FunctionsPluggable functions are PHP functions that can be changed inside a child theme or a even a plugin. If a function is wrapped inside a function_exists call within the parent theme, you can create the same function in the child theme which will override the original function from the parent theme, because child theme functions are loaded first.
Example of a function override inside the Child ThemeTo change the rendering of the Page Title Bar, you can override Avada』s avada_get_page_title_bar_contents function, which is located in Avada/includes/custom_functions.php. The function definition looks like this:
Copy to Clipboardif ( ! function_exists( 'avada_get_page_title_bar_contents' ) ) {
/**
* Get the contents of the title bar.
*
* @param int $post_id The post ID.
* @param bool $get_secondary_content Determine if we want secondary content.
* @return array
*/
function avada_get_page_title_bar_contents( $post_id, $get_secondary_content = true ) {
if ( $get_secondary_content ) {
ob_start();
.
.
.

return array( $title, $subtitle, $secondary_content );
}

}​x 1if ( ! function_exists( 'avada_get_page_title_bar_contents' ) ) {2 /**3 * Get the contents of the title bar.4 *5 * @param int $post_id               The post ID.6 * @param bool $get_secondary_content Determine if we want secondary content.7 * @return array8 */9 function avada_get_page_title_bar_contents( $post_id, $get_secondary_content = true ) {10 if ( $get_secondary_content ) {11 ob_start();12       .13       .14       .15      16 return array( $title, $subtitle, $secondary_content );17 }18​19}Simply copy the function to the functions.php of the child theme, which will override the parent theme』s one. Once done, you can modify it to meet your needs.
Copy to Clipboardfunction avada_get_page_title_bar_contents( $post_id, $get_secondary_content = TRUE ) {
// Place your code here.
.
.
.

return array( $title, $subtitle, $secondary_content );
}xxxxxxxxxx8 1function avada_get_page_title_bar_contents( $post_id, $get_secondary_content = TRUE ) {2 // Place your code here.3 .4 .5 .6​7 return array( $title, $subtitle, $secondary_content );8}Method 3: Actions and FiltersThe correct and safest way of updating or modifying theme functions within a child theme is using actions and filters. Apart from the actions and filters built-in within Avada, you can use the default WordPress actions and filters to modify the theme』s functionality.
A simple example would be changing the image size generated for blog large layout thumbnails in the Avada theme. The correct way to re-register within the child theme is to use after_setup_theme action in the child theme functions.php, remove the image size and then re-register the image size.
Example of an ActionCopy to Clipboardadd_action( 'after_setup_theme', 'my_child_theme_image_size' );
function my_child_theme_image_size() {
remove_image_size( 'blog-large' );
add_image_size( 'blog-large', 1000, 500, true );
}xxxxxxxxxx5 1add_action( 'after_setup_theme', 'my_child_theme_image_size' );2function my_child_theme_image_size() {3 remove_image_size( 'blog-large' );4 add_image_size( 'blog-large', 1000, 500, true );5}Useful Documentation On Child ThemesIf you』d like to learn and read even more about child themes, please follow the links below.
WordPress Codex on Child ThemesWordPress Developers Handbook: Child ThemesHow To Create A WP Child Theme video by WPBeginner.com

System Status

System Status

The System Status page contains a collection of relevant data that will help you debug your website accurately and more efficiently. In this tab, you can also generate a System Report, which you can include in your support tickets to help our support team find solutions for any problems you may have much faster.
This page is divided into seven sections; Avada Version History, Avada Conversion Controls, WordPress Environment, Server Environment, Updates Server Status, Avada Forms, and the Active Plugins section. The System Status page is located at Avada > Status in your WordPress Admin Sidebar, or from the Avada Dashboard, head to Maintenance > Status. Continue reading below for more information on each section, and watch the video for a visuial overview.
Avada Version History & Conversion ControlsThe Avada Version History & Conversion Controls sections show the current theme version and your previous versions, as well as several utility buttons that relate to various version』s migrations and conversions. The content you see in this section will vary depending on which versions you』ve used. For more information on each item which may be displayed in this section, view the list below.
Current Version: – This section will display the version number of the currently active Avada theme.Previous Versions: – This section will display the Avada update history for this site up-to the last three updates.Avada 4.0 Migration: – If you started using Avada on a version pre-Avada 4.0, then you will see a section which relates to the Theme Options migration to the Avada 4+ Theme Options framework. Click here for more details on the migration.Avada 5.0 Conversion: The Avada 5 update ushered in a new Fusion Builder Plugin which was completely rebuilt and refactored from the previous page builder included with Avada. The Fusion Builder plugin used a new shortcode syntax. Because of this, it required a conversion from the old builder』s shortcode syntax to the new Fusion Page Builder』s syntax. If you had an Avada version pre-Avada 5.0 installed, your content would have been converted upon update and the below buttons would have been listed on the System Status page for your site.Run Conversion: – This button can be used to manually start the shortcode conversion process on your site. Click here for more details on this.Revert Conversion: – This button will revert your page content to how it was before the update and shortcode conversion took place. Click here for more details on this.Remove Backups: – This button will remove the Fusion Builder backups that were created when you updated your site. Doing this will mean you cannot automatically revert your site and the 「Revert Conversion」 button will also be removed. Click here for more details on this.
Avada 6.1.1 Conversion: – Run Conversion Button – This button will rerun the Theme Options Conversion for version 6.1.1 manually.

Avada 7.4.1 Conversion: – Run Conversion Button – This button will rerun the Global Options Conversion for version 7.4.1 manually.
IMPORTANT NOTE: The contents on this section will vary based on the version you have started from and version you are currently on. See examples below.If you started on version 3.9.4 or lower, and are on the latest version 5.4.2, then, you should see 4.0 conversion button and 5.0 conversion button, as well as the revert Fusion Builder conversion button.If you started on version 4.0, and now on the latest version 5.4.2, then, you should only see 5.0 conversion button, as well as the revert Fusion Builder conversion button.
If you started on version 5.0 or higher, you will only see the Avada 6.1.1 Conversion Controls.

If you started on version 6.0 or higher, you will only see the Avada 7.4.1 Conversion Controls.
WordPress EnvironmentThis section displays all the relevant data that has to do with your WordPress environment.
Home URL – This item displays the URL of your site』s homepage.Site URL – This item displays the root URL of your site.WP Content Path – This item displays the system path to this WordPress install』s wp-content directory.WP Path – This displays the system path to the WordPress install』s root directory.WP Version – This item displays the version of WordPress installed on your site.WP Multisite – This item displays whether or not you have WordPress Multisite enabled.PHP Memory Limit – This item displays the maximum amount of memory (RAM) that your site can use at one time.WP Debug Mode – This item displays whether or not Debug Mode for WordPress is enabled.Language – This item displays the current language used by WordPress.Server EnvironmentThis section displays all the relevant data that has to do with your server environment.
Server Info – This item displays information about the web sever that is currently hosting your site.PHP Version – This item displays the version of PHP installed on your hosting server.PHP Post Max Size – This item displays the largest size that your post data can reach. That includes all post content (images, text, etc.)PHP Time Limit – This item displays the amount of time (in seconds) that your site will spend on a single operation before timing out.PHP Max Input Vars – This item displays the maximum number of variables your server can use for a single function to avoid overloads.SUHOSIN Installed – This item displays whether or not SUHOSIN is installed.ZipArchive – This shows whether or not ZipArchive is installed on yours server. This is needed for demo imports.MySQL Version – This item displays the version of MySQL installed on your hosting server.Max Upload Size – This item displays the largest file size that can be uploaded to your WordPress installation.DOM Document – This item displays whether or not DOM Document is installed. This resource is needed for the Fusion Builder to function correctly.WP Remote Get – This item shows whether or not wp_remote_get() is functioning correctly. This is used by Avada for communication with different APIs. (eg. Google, Twitter, Facebook)WP Remote Post – This item shows whether or not wp_remote_post() is functioning correctly. This is used by Avada for communication with different APIs. (eg. Google, Twitter, Facebook) GD Library – This item displays if the GD Library is installed and what the active version is.,Red and Green ValuesIn the System Status tab, some values may appear as green or red. If a value appears as green, this means that the value satisfies the minimum requirements needed to run the theme. If a value appears as red, this means that the value is below the minimum requirements and needs to be adjusted. Please click the button below to read about how to increase these limits.
How To Adjust System Status Limits,Avada Update Server StatusThe top part of this next section, as seen in the screenshot below, allows you to check the Avada Server Status, and will display advanced server response output for remote get requests. If you get a green message saying 「Tested API is working properly.」, means you should be good with the server and you should be able to update Avada, supplied plugins, import prebuilt websites, or apply patches with no problem.
If you get a red message, means there is something wrong and the messages and response codes can vary based on your setup. A short error log will be displayed providing you with the needed details which corresponds to the response codes.
Avada FormsThe bottom part of the section, as you can also see in the screenshot above, offers a button to Re-create Avada Forms Database Tables. These database tables get auto-created on update to 7.1, but if for some reason, they are not, users would see PHP notices, and Avada Forms would not work as expected. This buttons tries to create the tables again in such a case. If you continue to have troubles with this, consult your host, or submit a support ticket.,Active PluginsThis section displays all your active plugins. The Avada Core, Avada Builder, LayerSlider, Slider Revolution, Advanced Custom Fields PRO, Avada Custom Branding, and Convert Plus are plugins included with the theme. Please ensure that the Avada Core and Avada Builder plugins are always active and up-to-date.
Avada Core – This plugin is created by ThemeFusion, and is a required plugin. Please make sure it』s always active and up-to-date.Avada Builder – This plugin is created by ThemeFusion, and is a required plugin. Please make sure it』s always active and up-to-date.
LayerSlider WP – This plugin is created by Kreatura Media, and is an included plugin.

Slider Revolution – This plugin is created by ThemePunch, and is an included plugin.

Advanced Custom Fields PRO – This plugin is created by Elliot Condon, and is an included plugin.

Avada Custom Branding – This plugin is created by ThemeFusion, and is an included plugin.

Convert Plus – This plugin is created by Brainstorm Force, and is an included plugin.

How To Install Avada Via FTP

How To Install Avada Via FTP

There are two ways you can install the Avada Website Builder. You can install it via FTP, which is what will be outlined in this article, or you can install it via WordPress. Before you can install Avada, you will need to first download the necessary files from ThemeForest. Continue reading below for more information on theis installation methoid, and watch the video for a visual overview.,Where To Locate The Download FilesStep 1 – Login to the ThemeForest account that purchased Avada, navigate to your 『Downloads』 tab, and then locate your Avada purchase.
Step 2 – Click the 『Download』 button and choose to either download the 『Installable WordPress file only』, which is just the WordPress installable file package, or choose to download 『All Files & Documentation』 which is the full Avada Website Builder package. For installing Avada, only the Installable WordPress package is neccesary. If you want to install a Child Theme, you can find that in the All Files & Documentation zip file.,The FTP Installation ProcessStep 1 – Log into your server installation via FTP. You can use software such as Filezilla for this.
Step 2 – If you have downloaded the Full Package from ThemeForest, please unzip the master Avada.zip file and then unzip the secondary Avada.zip file which will give an Avada folder. If you download the Installable WordPress file only, simply unzip this, and you will have the same Avada folder.
Step 3 – Using the FTP client, upload the extracted Avada folder to the wp-content > themes folder on your server. Make sure the folder name is unchanged, so it』s called 『Avada』. This will take a few minutes, depending on your connection speed and your server.
Step 4 – Log in to your WordPress Dashboard and navigate to Appearance > Themes and clicking the 『Activate』 button, for the Avada theme.
Step 5 – Once activated, you will be redirected to the Welcome Screen. You』ll see a prompt to register Avada and then install the required plugins, which are the Avada Core and Avada Builder plugins. Click here to learn how to install Avada』s required plugins.
View how to install via WordPressWatch How To Install a Child Theme

Avada v4 Migration

Avada v4 Migration

IMPORTANT NOTE: The new Avada Theme Options is only available on Avada version 4.0+, this help file is applicable to anyone updating from a very old version of Avada (pre Avada 4.0).The new Theme Options panel that』s included with Avada version 4.0 is a truly extensible and powerful options framework for Avada. Because we』re using an entirely new Theme Options panel, it is necessary for your previous Avada installations to be migrated.
When updating from an older version of Avada to version 4.0, your current theme option values will be copied and stored in your database for safe keeping. In doing this, no data is lost during migration. The extra copy of theme options is then migrated over so that you can utilize the new options panel. Always make sure you backup your current theme folder before you upgrade. Updating Avada from previous versions to version 4.0 is a simple process and will be automatically run the first time you visit your dashboard after updating the theme files.
View screenshot here of what you will see when the migration is complete. Notice the LARGE RED BUTTON telling you to update the Fusion Core plugin.
How To Fix Migration ErrorsIn very rare cases, you may encounter issues with the update script. This usually occurs when your server has extremely low PHP settings. In case this happens to you, please continue reading below to learn about what to do when your migration fails.
How To Trigger Migration ManuallyStep 1 – Navigate to the Avada > System Status tab.
Step 2 – Under the Avada Versions section, click on the 『Trigger Data Migration』 link. View screenshot here.
Step 3 – Once you click the Manual Migration link, you will be redirected to the Migration Screen. Please wait until the data migration is finished.
Step 4 – When the data migration is finished, click the 『Take Me To Theme Options!』 button to be redirected to your new Theme Options panel.

Updating Avada from Older Versions

Updating Avada from Older Versions

Why you should update your theme and plugins regularlyA major reason to keep your WordPress theme and plugins up-to-date is for security purposes. Keeping your site updated ensures that you have the latest security fixes, and that your site is following the latest security best practices available. For detailed information on security in WordPress, please see the Hardening WordPress article.
If you』ve fallen behind on updates, or you』re taking over a new project that hasn』t been updated in a while, this post will guide you in updating from older versions of Avada up to the latest.
Pre-Update Tips
Before processing any update, make sure to take a full site and database backup. That will ensure you』re able to revert to a working point in your site if anything unexpected happens.

It』s also very important that you ensure your server limits are at least at the required minimums for the update/theme install to complete seamlessly. Read our Requirements for Avada doc for more information.

When updating from old versions of Avada, we strongly recommend a staggered update path. Below, we』ll guide you through one major theme update at a time. This will make the process as smooth as possible for you. At the end of each section, there will be a link to download each theme version, as required for the update path.

Check our detailed Important Update Information Archive document to find noteworthy details for any specific updates between your current version and the latest Avada version.
Recommended Update Path:With each new Avada update comes a set of new options, features and code improvements. Click on the version path that matches your current Avada version for detailed instructions

Avada 3.9 and older: If you』re below version 3.9, start with the steps in this section.

Avada 3.9.X: If you』re at version 3.9.X, start with the steps in this section.

Avada 4.0.X: If you』re at version 4.0.X, start with the steps in this section.
Avada 5.9.1: If you』re at version 5.9.1, start with the steps in this section.,Updating From Avada 3.9 And OlderRegardless of what version of Avada you have currently, if it』s before Avada 3.9, then 3.9.4 should be the first stage in the update. For info on what』s new to this theme version, visit the What』s new in Avada 3.9 page!,If you haven』t checked the Pre Update Tips section from above yet, click here for that important information.If you』re updating from an Avada version before Avada 3.8 and you have custom CSS, you』ll need to check your custom CSS after the update, due to a CSS refactor in Avada 3.8. Because of the refactor, your custom CSS classes may also need updating, so they match the new classes used in Avada.

For detailed information on the 3.8 update, please click here.

For information on custom CSS in Avada, please read our How To Make Custom CSS Changes doc.
If you have no customizations or custom CSS in your theme, then the update to 3.9.4 should be routine. For standard update information, please see our guide here.
Note: Since you』ll be updating with the Avada 3.9.4 files manually, only method #2 and #3 will work from that post.
After the update has completed, then clear your cache completely and check your site over to see if everything is working well. Since this is still an older version of Avada, it』s recommended that you have your plugins disabled, aside from the Avada Core plugin, while testing your site. This is to ensure any issues you see aren』t related to a plugin conflict. The primary goal here is to just ensure that the theme styling is how it should be, then on to the next update.
767,669 Businesses Trust Avada
Get Avada767,669 Businesses Trust Avada
Get Avada767,669 Businesses Trust Avada
Get Avada,Updating From Avada 3.9.XWhen updating from Avada 3.9.X, your next stage in the update chain will be 4.0.3. If you』re not at 3.9.X yet, follow the steps in the section above, before proceeding. For info on what』s new to this theme version, view the What』s New in Avada 4.0 page!,If you haven』t checked the Pre-update Tips section, click here for that important information.
In Avada 4.0.X the most notable change will be the migration from the old Avada Theme Options to the new Avada Theme Options.
IMPORTANT NOTICE: Before processing this update, be sure to take a full site and database backup. That will ensure you』re able to revert to a working point in your site if anything unexpected happens.To be sure the Theme Options migration completes correctly, you』ll want to double check your Avada System Status page and increase any limits that are showing a red notice (with the exception of max_input_vars as that will have no effect on the migration). Please see here for information on increasing your server limits and here for information on server requirements in Avada.
As an extra precaution, it』s recommended that you disable all non-Avada plugins (with the exception of WPML if in use), while the migration is being processed. This will ensure your Theme Options migration isn』t hindered by a plugin conflict.
If you get get trapped in the migration (e.g. The migration steps are endlessly repeating, or are frozen.), then you can correct this with FTP access. If you didn』t disable your plugins, then you may have a plugin conflict. You can fix this by changing the name of the wp-content/plugins directory to something else temporarily. (e.g. wp-content/plugins-dis) That will disable all the plugins and allow the migration to complete.

SPECIAL NOTE FOR WPML USERS: If you』re using WPML, you』ll want to be sure you』re updated to the latest version of the plugin so the migration completes for all languages. There was a conflict in a previous WPML version which caused the Theme Options migration to get stuck midway through. This was fixed in their plugin, so using the current version will ensure you』re in the clear.,Updating From Avada 4.0.XIf your current theme version is Avada 4.0.X, then your next stage in the update will be Avada 5.9.1. This will include the conversion of your shortcodes from the old Avada page builder to the new Avada Builder which was introduced in Avada 5.0. For info on what』s new to Avada 5.0, click here.
If you』re not at 4.0.X yet, please reference the appropriate section above for your current theme version, before proceeding.
If you haven』t checked the Pre Update Tips section from above yet, click here for that important information.
IMPORTANT NOTICE: Before processing this update, be sure to take a full site and database backup. That will ensure you』re able to revert to a working point in your site if anything unexpected happens.Since the new Fusion Builder uses different shortcodes, any shortcodes generated by the Avada page builder prior to Avada 5.0 will not render elements and will only appear as plain text. There』s an automated conversion process which will occur to update your content to the new shortcode syntax.
Areas that are automatically converted by Avada include: pages, blog posts, portfolios, WooCommerce product content and excerpts, widgets, theme options, Fusion Sliders, Revolution Sliders and LayerSliders.
Note: It will not automatically convert shortcodes from any custom post types you may have or from other plugin』s custom post types that may be in use on your site. For information on how to manually include those post types in the Avada conversion process, click here to view our guide.
If after the update, your site is showing all shortcodes on the front end of the website, the conversion may not have completed correctly. Although it looks like a serious problem, it』s normally just due to low server limits causing the update process to be truncated. To fix this, you can manually trigger the shortcode conversion again at the top of the System Status page. If that doesn』t correct the issue, double check that the Fusion Builder plugin is installed and activated.,Updating From Avada 5.9.1If your current theme version is Avada 5.9.1, then your next stage in the update will be the latest version of Avada. The current latest version is Avada 7.3, which includes a new registration system. For more details on that, please see the Changes To Registration With Avada 7.3.
If you haven』t checked the Pre Update Tips section from above yet, click here for that important information.
IMPORTANT NOTICE: Before processing this update, be sure to take a full site and database backup. That will ensure you』re able to revert to a working point in your site if anything unexpected happens.If you have trouble with the update and you need additional help, please submit a support ticket to our support center and we』ll check into it ASAP. Please fill out all the requested fields in the ticket submission form to avoid delays.,Getting Additional Help When NeededHow To Update The Theme
To register an account and register your purchase to access theme support, please click here.

If you already have registered and need assistance, please create your support ticket here.
Purchases made before September 1st, 2015 are eligible for our Avada Grandfathered support. More information on Grandfathered support can be found here.
If your support account has expired, you can find information on renewing that here.

How To Work With Sticky Containers

How To Work With Sticky Containers

With Avada 7.0, there are many new Sticky options, the main one being that you can now make Containers Sticky. You can make a Container sticky in normal page content, but more often than not, this feature will be used as part of a Custom Header Layout, in conjunction with other complementary Sticky options, now found in Columns and certain other Elements. Read on to go through the various Sticky Options to see what they can do, or watch the video for a visual overview.,OverviewSticky PositionSticky Container Background Color & Minimum HeightSticky Container Offset
Sticky Container Transition Offset
Sticky Container Hide On Scroll
Image Element Sticky Options

Image Sticky Max Width

Menu Element – Sticky Minimum Height
Element Sticky Visibility Option
Conclusion,Sticky PositionYou will find the main Sticky option for Containers on the Extras tab in the Container Element. It』s called the Sticky Position option. If this is set to On, then a range of other Sticky related options appear beneath it.
The first of these is the Responsive Position Sticky, which again, allows you to choose at which screen sizes the container should be sticky. So for example, you might have the Container sticky on large screens, but not on medium or small ones.
You can see an example of this on the Pet Supplies website, where the 「Get $25 OFF」 banner on the Home page (which is in the Custom Page Title Bar Layout section, not in the Header itself) is sticky on large screens, but isn』t on other sizes.,Sticky Container Background Color & Minimum HeightUnder this, there is an option called Sticky Container Background Color, which allows you set a background color for the Container when it is Sticky.
There is also an option called Sticky Container Minimum Height, which controls the minimum height of the container when sticky. This option, however, will only show if the Height of the Container is set to Minimum Height in the General tab.,Sticky Container OffsetThen comes the Sticky Container Offset option. This controls the top offset from the container and top of viewport when sticky. It can pass either a unit of measurement, or a CSS selector.
As an example, let』s look at New Header Layout 6, one of the Prebuilt Headers For Layouts. In this Layout, both Containers are sticky. Without the Sticky Container Offset on the second Container, both Containers would be aligned to the top of the viewport when they became sticky, and would overlap.
So what this option allows you to do is to set a CSS Class in the top Container (for example top-bar) and then use that selector in the Sticky Container Offset field (.top-bar) in the second Container. This way, the second container is also sticky, but its position is offset by the height of the Container above it, so they don』t overlap. Alternatively, you can just use a pixel value in the Sticky Container Offset field.
As you can see in the image below of the second Container, the Sticky Container Minimum Height has been set to 75px (from it』s normal Minimum Height of 110px), and the .top-bar class has been assigned to the Sticky Container Offset field.,Sticky Container Transition OffsetYou can also see at the very bottom of the screenshot above, that there has been 35 pixels of Sticky Container Transition Offset set. This controls the scroll offset before sticky styling transition applies. This will give the user a much smoother experience.
IMPORTANT NOTE: If you are changing the height of the Container as it becomes Sticky, then the transition offset should be at least the difference between the heights.As can be seen in our above example, we are transitioning from a 110px Container height to an 75px Container height, and if we had no transition offset, the Sticky Container would decrease by 35px as the top of it touched the viewport. This would mean the content under the container would suddenly jump up 35px or there would be 35px of empty space.
So, in this case, we want the actual height transition to kick in only after we have scrolled enough past the header for that jump not to occur.,Sticky Container Hide On ScrollThe final Sticky option in the Container Element is Sticky Container Hide on Scroll. This controls the scroll distance before the container stops being sticky, and is hidden while scrolling downwards.
In this way, you could have multiple Sticky Containers as you scrolled down a page, with some staying, and some disappearing again as you scrolled further down. The creative options here are almost endless. Set to 0 to keep the Container always visible as you scroll down. This can be set up to 1000 pixels.,Image Element Sticky OptionsThere are also some Sticky options in other Elements. Let』s start with the Image Element. When using the Image Element there is now an option to pull the Logo dynamically into the Element. You can set this to All, or there are specific options to just pull the Sticky logo (Retina or Normal) from the Global Options.
This could be used, for example, if you wanted to create a unique Sticky Header Container in your Header Layout, that only appeared when the Container was in Sticky Mode, and you wanted to pull a specific Sticky sized logo.,Image Sticky Max WidthThere is also another Sticky option in the Image Element, as you can see at the bottom of the screenshot above, to enable an Image Sticky Max Width. This of course, is the maximum width the image should take up when the Container is sticky. You could leave this empty to use the full width of the image.
767,645 Businesses Trust Avada
Get Avada767,645 Businesses Trust Avada
Get Avada767,645 Businesses Trust Avada
Get Avada,Menu Element – Sticky Minimum HeightAnother Sticky option can be found in the Menu Element. This is the Sticky Minimum Height, found on the Main tab, and it sets the minimum height for main menu links when the Container is sticky. This could also be used in conjunction with the previous Sticky Max Width option in the Image Element to control the height of both logo and Menu in a Sticky Container. You can see the Avada Hosting Website as an example of this.,Element Sticky Visibility OptionIn certain Elements, you can also find another important new Sticky option. This is the Element Sticky Visibility option. This is a dependent option which only appears if the parent Container is set to Sticky. It allows you to determine when the Element will be visible, based on whether the Container it is in, is in Sticky mode or not. You can choose from Normal and Sticky visibility, and by default, they are both selected, meaning the Element is always visible. But if you deselect the Normal option, the Element will ONLY be visible when the parent Container is in Sticky mode.
This can be used in a number of creative ways, particularly with Header Layouts, but generally as well. The Column Element has this option as well, and in the above example with an individual Sticky Container, you would set the Column Element Visibility to only sticky, so the entire Column would only display when the parent Container went into Sticky mode.
An example of this technique can be seen in New Header 5, one of the Prebuilt Headers for Layouts. In this Layout, as you can see below, there are two Containers, with the second one being set to Sticky. The two outside Columns on the second Container have their Element Visibility set to Sticky only, and so in the normal state of the Container, these two Columns, and the Elements inside them, are not visible, but when the Sticky Container activates, the logo and the Woo Menu suddenly appear in the Container.
Currently, this option is only available for the Columns, Nested Columns, Alert, Breadcrumbs, Button, Icon, Image, Menu, Search, Separator, Sharing Box, Social Links, Title, and Text Block Elements.
Normal Container
Container in Sticky Mode,ConclusionThe sticky options in the Container, and other Elements, can be used in many creative ways, both in a Header Layout Section, other Layout Sections, and in the page content itself. Play around with these options to see just how flexible Avada has become.

How To Install Avada Via WordPress

How To Install Avada Via WordPress

There are two ways you can install the Avada Website Builder. You can choose to install it via WordPress, which is what will be outlined in this article, or alternatively, you can install it via FTP. Before you can install Avada, you need to download the necessary files from the ThemeForest account Avada was purchased from. Continue reading below for more information, and watch the video for a visual overview.,Downloading The Installation Files From ThemeForestThe first thing to do is to download the installation files from ThemeForest. There are two packages available, as you can see in the screenshot below – All files and documentation, and the Installable WordPress file only. The Full Theme Package has additional files such as the Child Theme zip, Revolution and Layer Slider documentation and the classic demo .PSD files, while the Installable WordPress file contains only the files you need to upload to WordPress. For full details, see the What』s Included With Your Avada Purchase doc.,Where To Locate The Download FilesStep 1 – Log in to your ThemeForest account and navigate to your 『Downloads』 tab and then locate your Avada purchase.
Step 2 – Click the 『Download』 button and choose to either download the 『Installable WordPress file only』, which is just the WordPress installable file, or choose to download 『All Files & Documentation』 which is the full Avada Website Builder package.,The Installation ProcessStep 1 – Navigate to Appearance > Themes from the WordPress Dashboard.Step 2 – Click the 『Add New』 button on top of the page, then the 『Upload Theme』 button.Step 3 – Click 『Choose File』 and find the theme files you』ve just downloaded. If you』ve downloaded the installable WordPress file, then you do not need to unzip the file. If you』ve downloaded the Full Theme Package, you have to unzip the master Avada.zip file, therein you will see a secondary Avada.zip file. This is the one you select to install.
Step 4 – Once the file has uploaded, click the Activate link.
For instructions on how to install via FTP, go here.Having issues with Installation? Go Here.,Register Your Avada PurchaseOnce you activate Avada inside WordPress as the default theme, you will be redirected to the Avada Welcome Dashboard. You』ll be prompted to register Avada using your purchase code, so that you can then install the required Avada Core and Avada Builder plugins.
See this document on how to register Avada.See this document for more information about the required and bundled plugins.See this document for more information on importing prebuilt websites.,Troubleshooting『Are You Sure You Want To Do This?』 ErrorIf you get the 「Are You Sure You Want To Do This」 message when installing Avada.zip file via WordPress, it means you have an upload file size limit that is set by your host. If this happens, please install the theme via FTP or contact your hosting company and ask them to increase the limit.

Backing Up Your Site & Theme Options

Backing Up Your Site & Theme Options

Backing up your site is an essential practice to ensure that you don』t lose any data during major changes or updates. Continue reading below to learn how to backup your site and your settings.
Backing Up Your SiteBacking up your website is highly recommended and is very important. There are several reasons why backing up your site is a good idea, and one of the primary reasons is to preserve your data in case of malicious attacks such as DDOS attacks, SQL injection attacks, trojan and malware injection, and the like. To learn more, please read our 『How And Why You Need To Setup WordPress Backup』 blog article here. We』ve listed out some great plugins below to get you started.
Recommended Plugins / Services To UseVaultPress – A monthly subscription based service developed by Automattic, the company behind WordPress.com.UpdraftPlus – One of the most trusted backup solutions for WordPress with a free and a premium version.BackWPup – A free WordPress backup plugin with a paid Pro version as well.
ManageWP – You can also backup and restore your sites with services like ManageWP.
Backing Up Global OptionsThe plugins mentioned above will backup your entire site, but if you』d like to separately export and backup just your Global Options, located in the Avada > Global Options panels, then please follow the steps below. You can also fetch your Global Options』 Export URL on one site and use them to import the same Global Options settings on another site.
Step 1 – Navigate to Avada > Global Options > Import / Export.
Step 2 – Find the 『Export Options』 section, and choose one of the three available options. Click the 『Copy Data』 button to copy the Global Options data directly. Click the 『Download Data File』 button to download the .JSON file. Finally, click the 『Copy Export URL』 button to copy and paste your site』s Export URL.
Step 3 – To import your backup Global Options, find the 『Import Options』 section and click the 『Import Contents From File』 button and paste the contents of the .JSON file you』ve exported. Alternatively, you can also click the 『Import From URL』 button and paste the Export URL of another site to copy those Global Option settings.

How To Make The Header Phone Number A Link

How To Make The Header Phone Number A Link

Under Avada > Theme Options > Header > Header Content > Phone Number For Contact Info, you can insert a phone number to display in the header. If you would like the number to be a link, you can add the number as per the code below, but you need to use single quotes. Double quotes will not work because the content is then treated like a variable or a parameter. See below for an example of the correct syntax.

Copy to Clipboard+45 40521604 1+45 40521604

How To Update The Avada Website Builder

How To Update The Avada Website Builder

We want to ensure your Avada update goes as smoothly as possible. And so, we』ve created a comprehensive guide to help you with this process, regardless of which Avada version you』re currently on. Please read this in full so you』re informed of how to best update your Avada site. Take note of our Overview area below to help guide you through this post』s content.
There are two ways to update Avada. The first method is our Auto Update feature which requires you to register Avada via Purchase Code Registration. The second is to update the theme manually, either via FTP or WordPress. This method requires you to first download the theme files from ThemeForest.
Before you update, it』s best practice to always check our Important Update Information article which is updated for each new version, and to make a full site and database backup. This will ensure you can revert to a working version if anything unexpected occurs
Overview
Best Practice: A list of important points to check before updating your site.
Important Update Information: A link to our post covering important changes in Avada for a specific version.Updating To Avada 7.3: Important information you should know when updating to Avada 7.3Updating From Older Avada Versions: Important information you should know when updating from older versions.Auto Update Method: Information on how to update using WordPress』 auto update feature.Manual Update Methods: This covers uploading through the WordPress admin and how to do a direct FTP installation.How To Update Required Plugins: Covers details on updating Avada』s required plugins.Troubleshooting: Some common issues that you might encounter and what to do to fix it.Best Practice
Before processing any update, be sure to take a full site and database backup. That will ensure you』re able to revert to a working point in your site if anything unexpected happens.
Before doing an update, we also recommend you give your installation a health check and ensure that your server is configured to the minimum requirements for Avada. You can find details on what you need to check here.
It』s also very important that you ensure your server limits are at the required minimums for the update / install to complete. Click here for more details on server requirements and click here for information on checking and increasing those limits.
When updating from versions of Avada older than 5.0, there are some important points you should be aware of. This will be version specific, so please see our section covering updates from older Avada versions below for more details.Important Update InformationBefore you update to a new version of the theme, it』s important to always check our Important Update Information article. This article is regularly updated and changes every time a new version is released.
View Important Update InformationUpdating To Avada 7.3If you』re updating to Avada 7.3, there is an extra step you are required to undertake, to re-register your purchase. As the registration system has changed with this version, from a token key system to a purchase code registration system. Please see the linked article below for more information.
Changes To Registration With Avada 7.3Updating From Older Avada VersionsIf you』re on an old version of Avada, it』s important that you update in a sequential process. Please see the linked article below for specific information for your old version.
View Our Update Guide For Older Avada VersionsAuto Update MethodThe easiest way to update Avada is to use our Automatic Update feature, which requires you to register your product by Token Registration. Once you have registered the product and an Avada update is released, you will receive an update notification in the WP Dashboard > Updates section of your installation and requires user acknowledgment to complete the update. NOTE: To ensure you receive the notification, make sure you have a second, backup theme installed, such as Twenty Twenty.
How To Register AvadaView The How To Update Avada via WordPress VideoHow To Update Via The Auto Update MethodIMPORTANT NOTE: We highly recommend backing up your theme, files and database before updating.Step 1 – Register your purchase by Token Registration.
Step 2 – Navigate to the WP Dashboard > Updates section of your installation.
Step 3 – Under the 『Themes』 section, you』ll see the Avada update notification. If you don』t see the update and know one available, click the 『Check Again』 button on top of the page to refresh the updates list. Make sure you also have a second, backup theme installed, such as Twenty Twenty.
Step 4 – Check the checkbox beside the Avada update, then click the 『Update Themes』 button to start the update.
Step 5 – Wait for the update to complete. A success notification will be displayed once the theme is updated successfully.
Step 6 – Don』t forget to update the required plugins.
Manual Update MethodsWith the Manual Update Methods, you can either choose to upload the theme files manually via FTP or WordPress. Before you can update manually, you have to download the theme files from Themeforest. Continue reading below for instructions on how to download the theme files and how to upload them.
How To Download The Avada Files From ThemeforestStep 1 – Login to your Themeforest account, navigate to your 『Downloads』 tab and locate your Avada purchase.
Step 2 – Click the 『Download』 button and choose to either download the 『Installable WordPress file only』, which is just the Avada.zip file or choose to download 『All Files & Documentation』 which is the full Avada package.
Step 3 – After downloading the files, you need to decide if you want to upload the theme files via FTP or WordPress. For instructions on both methods, please continue reading below.
How To Update Avada Via FTPIf you update via FTP, it』s important that you delete (not replace or overwrite) the old Avada folder. If you only overwrite the folder, then any files that were removed in the new version will remain in your site』s theme files. This is because it only updates exactly matching file names. This will cause issues in the theme, including fatal errors. When you update via the WordPress admin, the folder is automatically deleted first in the installation process.
IMPORTANT NOTE: We highly recommend backing up your theme, files and database before updating.View The How To Update Avada via FTP videoStep 1 – Log into your server using FTP and navigate to the wp-content > themes folder. Here you』ll find a folder called 『Avada』.
Step 2 – Backup the 『Avada』 theme folder by saving it to your computer. Once that』s completed, you can delete it from the server. Deleting the theme files won』t remove your content. Your content such as pages, options, images and posts will not be lost or erased by doing this. However, any customizations to the theme』s core files, such as PHP files, will be lost unless you』re using a child theme.
Step 3 – Retrieve the theme files you』ve just downloaded. If you』ve downloaded the installable WordPress file, then you only need to extract it once to get to the 『Avada』 folder. If you』ve downloaded the Full Theme Package you must extract it once to access the secondary 『Avada.zip』 file, and then extract the secondary 『Avada.zip』 file to get to the 『Avada』 folder.
Step 4 – Once extracted you can drag and drop the new Avada theme folder into the wp-content > themes directory. Make sure the Avada theme folder is named Avada and not Avada.zip.
Step 5 – Don』t forget to update the required plugins.
How To Update Avada Via WordPress ManuallyWhen you auto update via WordPress, your old theme folder will be deleted automatically, so you won』t need to do that yourself.
IMPORTANT NOTE: We highly recommend backing up your theme, files and database before updating.Step 1 – First you need to deactivate your current Avada theme located in the WordPress Dashboard > Appearance > Themes section. To deactivate, simply switch to a different theme. For example, the default WordPress Twenty Twenty-One theme.
Step 2 – After deactivating, you can go ahead and delete it. To do this, hover over the theme thumbnail then click 『Theme Details』. In the bottom right corner of the window, click the 『Delete』 button. Your content such as pages, options, images and posts will not be lost or erased by doing this. However, any customizations to the theme』s core files, such as PHP files will be lost unless you』re using a child theme.
Step 3 – Retrieve the theme files you』ve just downloaded. If you』ve downloaded the installable WordPress file, then you do not need to extract it. If you』ve downloaded the Full Theme Package, you have to extract it once to access the secondary installable 『Avada.zip』 file.
Step 4 – To install, navigate to the WordPress Dashboard > Appearance > Themes section of your installation and click the 『Add New』 button near the top of the page. Then click the 『Upload Theme』 button.
Step 5 – Click on the 『Choose File』 button and select the installable 『Avada.zip』 file and upload. Once uploaded, click 『Install Now』.
Step 5 – When this has completed successfully, re-activate the theme by clicking the 『Activate』 button.
Step 6 – Don』t forget to update the required plugins.
Updating The Required PluginsIMPORTANT NOTE: The Avada Builder plugin, renamed from Fusion Builder in Version 7.0 is an integrated plugin packed with new and innovative features and options.Avada has two required plugins – Avada Core and Avada Builder. Without these plugins, Avada won』t work properly. With every update, there』s always an update for the required plugins. Make sure you update the required plugins after updating the theme to ensure that you don』t run into any compatibility issues. To learn how, please follow the link below.
View The 『Plugin Installation』 ArticleTroubleshooting『Are You Sure You Want To Do This?』 Error MessageIf you get the 「Are You Sure You Want To Do This」 message when installing the 『Avada.zip』 file via WordPress, it means your server has an upload file size limit, which is set by your host. If this happens, install the theme via FTP, or contact your hosting company and ask them to increase the limit. We recommended an upload limit of 32M.
Theme Install Failed 『Destination Folder Already Exists』You may be getting this error because you have a duplicate 『Avada』 folder. This error happens because WordPress only allows you to have one theme with the same name when uploading the theme via WordPress admin. We recommend updating the theme via the Auto Update method to get around this, or you can update the theme via FTP.