contacts

Get All 146 Premium WordPress Themes for Just $59.99
One-Time Payment: Unlimited Use Across Unlimited Domains, Plus Free Lifetime Updates! Learn more

Issue with Beaver Builder Plugin

Issue with Beaver Builder Plugin

We have recently received a customer query about Beaver Builder plugin support with one of our themes – tMovies. We made the necessary investigation and found the reason for the issue:

1. Our themes rely on latest jquery/jquery.ui standard js libraries.

2. The plugin relies on old and deprecated jquery/jquery.ui js libraries.

The best solutio would the plugin to be updated to use latest jquery.ui library, but it’s not something we could do (it can be done only by plugin author).

In case you want to remain using the Beaver Builder, we can suggest the following theme update that you can apply to resolve the issue:

1. Login to your Admin Panel

2. Navigate to Left Menu -> Appearance -> Editor

3. Open inc/actions.php file

4. Replace the following code:

// Load jQuery UI Script
wp_enqueue_script( ’tisho-jquery-ui-js’, get_template_directory_uri() . ‘/js/jquery-ui-1.10.4.custom.min.js’, array( ‘jquery’ ) );

// Load Utilities JS Script
wp_enqueue_script( ’tisho-utilities-js’, get_template_directory_uri() . ‘/js/utilities.js’, array( ‘jquery’, ’tisho-jquery-ui-js’ ) );

with

// Load Utilities JS Script
wp_enqueue_script( ’tisho-utilities-js’, get_template_directory_uri() . ‘/js/utilities.js’, array( ‘jquery’, ) );

5. Save changes

6. Navigate to Left Menu -> Appearance -> Editor

7. Open js/utilities.js file

8. Find and DELETE the following code:

jQuery(‘#header-top’).tooltip();
jQuery(‘#header-top-subcontent’).tooltip();
jQuery(‘#header-logo’).tooltip();
jQuery(‘.slider’).tooltip();
jQuery(‘#main-content-wrapper, #home-content-wrapper’).tooltip();
jQuery(‘#footer-main’).tooltip();

9. Save Changes

One Response to “Issue with Beaver Builder Plugin”