How to enable / disable Live Preview feature?

How to enable / disable Live Preview feature?

If you』ve been working with Beaver Builder, you might have observed that whenever you add a module or make a slight change on a page, you need to save and publish it in order to see it live.
But, in the latest version of UABB, i.e. the Ultimate Addons for Beaver Builder version 1.2.0, we』ve introduced the Live Preview button using which you will be able to see how your changes look without having to publish the entire page.
You can enable / disable this live preview option by following the steps mentioned below.
Click on 「UABB」 seen under settings, and then go to General Settings.
You』ll find an option that says Enable Live Preview. You can enable or disable this by clicking on the checkbox.

Note: This option is enabled by default. You can disable it using the same steps. 
Also, note that the Live Preview option has been deprecated from version 1.4.4.

cURL error 6: Could not resolve host: support.brainstormforce.com

cURL error 6: Could not resolve host: support.brainstormforce.com

This DNS resolution error is usually hosting network related error. This means that your server could not connect to our API server at – support.brainstormforce.com.
The best way to get this resolved is by communicating with your web host providers and ask them if there is any blocking / Firewall rule in place on your server which might not be causing a problem in the connection between our API server and your website.

How to Set up a Mega Menu with UABB?

How to Set up a Mega Menu with UABB?

With UABB version _ _, you can create stunning mega menus. UABB Advanced Menu module now supports mega menu functionality. You just need to add a CSS class to the top-level menu item.
Below are the steps that describe steps to use mega menu with  UABB Advanced Menu module:
1. From the WordPress dashboard navigate to Appearance > Menus.
2. From the upper right corner, click on the Screen Options. Tick the CSS Classes checkbox.
3. Click on the top-level menu item whose child menu items you would like to turn into a mega menu.
4. In the CSS Classes field, add class mega-menu
With UABB Advanced Menu module you can customize border and separator for submenus.  Options are available under Submenu tab.

Fatal error: Class 'FLBuilderAdminSettings' not found

Fatal error: Class 'FLBuilderAdminSettings' not found

First of all – Please make sure that you have installed version 1.8 or newer of Beaver Builder plugin.
Meanwhile, to get back your website in working condition, please deactivate the UABB plugin and remove it manually through your FTP program.

Login to the site via your FTP Program.
Go to the WordPress plugins directory and find bb-ultimate-addon folder.
Delete the bb-ultimate-addon folder from your server.

How to Open a Specific Element of Advanced Tab from a Specific Page?

How to Open a Specific Element of Advanced Tab from a Specific Page?

It is possible to link individual elements of 「Advanced Tab」 on a particular page from specific pages.
First, you will need to add an ID to the 「Advanced Tab」 module. Here is a screenshot that will help you add an ID in the Advanced tab of the module.

The elements of the module are numbered from 0. If you want to open the 3rd element you will have to use elements』 index which is 「2」 after the URL.
Add 「/#advanced-tab-2」 after the page URL you are redirecting the user to.
Eg: You have a redirect button on Page 1 and wish to redirect users to the third tab within an Advanced tab module on Page 2.
The URL you need to enter for the button should be something like :
「URL-of-page-2/#advanced-tab-2」
Refer the below gif, which shows that the third element is opened as we clicked on the button which redirected us to the concerned page.

Similarly, you can append the index of the last element which is to be opened from different pages.

Section and Page Templates don』t look the same when I am using them. Why?

Section and Page Templates don』t look the same when I am using them. Why?

The Ultimate Addons for Beaver Builder come with a huge collection of section and page templates. The templates quite often do not look same as the demos when you use them on your website.
This is because, they are coupled with theme typography that compels them to inherit the theme settings and formatting options.
This means that the UABB templates retrieve your theme font size, colors and styling when used on your site. This saves you hours of work trying to match the template to your theme.
Basically, our thoughts behind doing this is to let the template adopt the styling of your theme and look like a part of your website.

How to Set Different Image Positions in Price List?

How to Set Different Image Positions in Price List?

The image can be added for every price list item. This image position can be set at the left/right/top of the content. According to the image position overall alignment of the content can be managed.

Settings are available under Layout > Layout Settings. Size of the image can be managed from Style > Image Section > Image Size.

Add Multiple Recipients in the Contact Form module

Add Multiple Recipients in the Contact Form module

There are times when you would want to add multiple email address to your contact form. This means that every time a user fills a contact form, a notification will be sent to all the email IDs connected to that form.
You can do this using UABB』s Contact Form module.
You will need to simply add multiple recipients』 email addresses separated by a comma(,). You can refer to the image below

If you』re facing any issues or have any further questions, please feel free to Get in touch. We will be happy to help!

How to Set Thumbnail Image for Video?

How to Set Thumbnail Image for Video?

You can set a nice thumbnail image for the video that will display before playing a video. Video module offers this option.
The setting can be found under the Thumbnail (tab) > Thumbnail & Overlay.
Set Custom Thumbnail option to YES. Select an Image, Image Size and adjust the Overlay Color.

How to Increase the Memory Limit of your site?

How to Increase the Memory Limit of your site?

『Fatal Error : Memory Size Exhausted』

Have you come across this error anytime? Such an error occurs when you install a new theme, plugin or upgrade your WordPress to the latest version.
This is because the PHP Memory Limit of your Host is lesser than the process actually needs. In such cases, you might want to increase the host memory Limit in order to complete the process.
Following are 5 different ways you can increase your Host』s PHP Memory Limit:

1. Changing the Memory Limit via wp-config.php:

This method will be comfortable for those who do not want to mess with the PHP.ini file. All you need to do is add define(『WP_MEMORY_LIMIT』,』XM』); in your wp-config.php file. Here too, 『X』 is the number of MBs you wish to extend your limit to.
define('WP_MEMORY_LIMIT','256M');

2. Increasing Memory Limit via PHP.ini file:

Most of the small shared hosting servers don』t allow users to access their PHP.ini file. If you are granted access, you can directly increase the memory limit here. If not, you can ask the host to allow you to create a duplicate PHP.ini file in your directory. The data or values in this duplicate PHP.ini file will override the data in the original file. To do this, you can simply create a file named PHP.ini in the directory where your WordPress website is installed. If you wish to increase the limit to X MB, you can enter the command memory_limit = X M; where X is a number.
memory_limit = 256 M;

3. Changing Memory Limit via wp-config.php:

This is an alternative method to the PHP.ini file method. You simply need to add the command: ini_set(『memory_limit』,』XM』); in your wp-config.php file that is placed in the root folder of your WordPress installation. Note: X is the number of MBs you wish to increase the memory limit to.
ini_set('memory_limit','256M');

4. Modifying the .htaccess file:

In case you have a .htaccess file, you can simply add the command: php_value memory_limit XM in it, to increase the memory limit to X MB. Note: A default WordPress Installation won』t have a .htaccess file.
php_value memory_limit 256M

5. Contact your host:

If you are a non techie or are new to all of this, it is better to get it done from someone who knows it all. Your host can be the best one to get in touch. Contact him to help you increase your PHP Memory Limit.