Possible Conflict Between Beaver Builder Theme and Thrive Leads?

I updated a site to the newest version of WP yesterday, and today I’m having trouble with Thrive Leads not showing the dashboard. I just get a blank page.

I tried disabling all plugins and activating just Thrive Leads, but that didn’t work. It wasn’t until I changed the theme to Twenty Sixteen that the problem was resolved. The Thrive Leads dashboard showed up fine. When I switched back to the Beaver Builder theme, the problem returned.

Are you aware of any conflicts between these two products?

Thanks,

Dairrell

Hi Dairrell,

Can you provide temp admin access, please? So we can take a closer look. Also, as I am not familiar with that plugin, can you provide a screenshot of what you have when the BB theme is active and when it isn’t.

Thanks,
Danny

[Content Hidden]

Hey Dairell,

Is it fine if we’re to switch themes real quick for comparison?

Ben

Yes. No problem.

Dairrell

Hi Dairrell,

The issue is actually caused by your custom code in the BB child themes functions.php file. I confirmed this as the BB theme has no issue with the Thrive dashboard.

When I removed this code, the issue was resolved.

## defers parsing of javascript ##
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) return $url;
if ( strpos( $url, 'jquery.js' ) ) return $url;
return "$url' defer ";
}
add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );

Thanks,
Danny

Thanks for your help on this Danny.

That’s what I get for trying to satisfy Google’s PageSpeed monster… more headaches than it’s worth.