• So far I’ve been using Beaver Builder (in continuing text I’ll refer to it as just BB) with Tribute theme without problems. Today, when I opened a post to edit it with BB, none of the buttons for adding rows and editing were working. I’ve installed another theme, and the BB works well, meaning that the problem must be in the Tribute theme I suppose. Is there any way to see what is causing the BB not to work with Tribute theme anymore, as I’ve somewhat customized the theme and would hate to have to change it to another.
    Thank you!

Viewing 1 replies (of 1 total)
  • Use Following Code in function.php its working for me

    function tribute_modify_jquery() {
    wp_deregister_script(‘jquery’);
    wp_register_script(‘jquery’, get_template_directory_uri() . ‘/js/jquery.min.js’, array(), ‘1.11.3’ );
    wp_enqueue_script(‘jquery’);
    }

    add_action(‘wp_enqueue_scripts’, ‘tribute_modify_jquery’);

Viewing 1 replies (of 1 total)
  • The topic ‘Beaver Builder no longer working on Tribute theme’ is closed to new replies.