• Resolved InspiredMedia

    (@inspiredmedia)


    We updated to the latest version of the plugin. Our site is running the latest WordPress version and the latest Beaver builder agency version. Once we updated to the latest version of popup maker the site is completely out of wack. Also the page builder stopped working. We have seen this in the past when there is some code conflict. When we deactivate the popup maker plugin everything works fine.

    Prior to the update everything has been working fine on this site and our other 10 sites without issue. This is the first site we have updated.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter InspiredMedia

    (@inspiredmedia)

    Just an update. We reverted back to v1.8.3 and everything works fine without conflict. So issue definitely with latest release.

    theshae

    (@theshae)

    I got the same. It’s breaking BeaverBuilder.

    Plugin Author Daniel Iser

    (@danieliser)

    @inspiredmedia, @theshae – Sorry for the delay guys, tooks some time but I finally tracked the issue down to this file wp-content/plugins/bb-plugin/classes/class-fl-builder.php:1479 Which reads

    if ( did_action( 'wp_enqueue_scripts' ) && 'wp_enqueue_scripts' !== current_filter() ) {
       wp_print_styles();
    }

    But should likely be this for better compatibility with plugins that call do_shortcode inside of wp_enqueue_scripts.

    if ( did_action( 'wp_enqueue_scripts' ) && ! doing_filter( 'wp_enqueue_scripts' ) ) {
       wp_print_styles();
    }

    Changed it and it fixed the issue.

    So the issue wasn’t really with our update but how Beaver Builder determined if they need to render their assets. In this case if you inserted a template into a popup, they rendered the main template assets into the popup which then didn’t get loaded until the footer.

    I have submitted a bug report via their slack and support ticket system. Hopefully they can patch it quickly, if not you can manually patch or simply mark those popups as draft to resolve the issue.

    Hope that helps. If your issue is resolved please take a moment to rate and review the plugin or support.

    If you still need help please message us directly at https://wppopupmaker.com/support/.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin Conflict With Beaver Builder after latest update’ is closed to new replies.