WPIntell

Source evidence

Issue with Beaver Builder

Genesis Featured Page Advanced · support · 2021-02-23T10:13:00+00:00

mixedsentiment
mediumseverity
0.78relevance
7replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 27 rows with source links

14.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

23 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
geea resolved
Hi there, In Beaver Builder, the custom image upload button is not working, the console displays ReferenceError: fpa_imageUpload is not defined I checked and it seems the plugin is only enqueuing the scripts on the admin pages, while Beaver Builder is a frontend builder. So enqueueing the scripts when BB is active fixes the problem. I thought you might want to know this, maybe you can include the fix in the next version. Thanks for your work! Thanks for the heads up @geea . Are you able to share the fix you implemented for Beaver Builder? If not, no worries. It would give me a bit of a jump start on fixing the issue as I am not very familiar with that plugin 😉 Thanks, Nick Hey Nick! Actually, it would be more relevant to tell you what to change in the plugin file than I what I did from outside the plugin. In inc/widget-class.php 1. change line 70 from: add_action( 'admin_enqueue_scripts', array( $this, 'fpa_admin_scripts_enqueue' ) ); to: add_action( 'wp_enqueue_scripts', array( $this, 'fpa_admin_scripts_enqueue' ) ); 2. change line 589 from: if ( 'widgets.php' == $hook || 'customize.php' == $hook || defined( 'SITEORIGIN_PANELS_VERSION' ) ) { to: if ( 'widgets.php' == $hook || 'customize.php' == $hook || defined( 'SITEORIGIN_PANELS_VERSION' ) || FLBuilderModel::is_builder_active() ) { Hope this helps! This reply was modified 5 years, 3 months ago by geea . This is awesome, thanks @geea . I will push an update tonight or by tomorrow at the latest. I’ll followup when it is up. Best, Nick That’s great, thank you, looking forward to the update. Cheers! PS: Correction (although you probably noticed it out already) – you’ll need to add to line 70 instead of changing it. Just pushed version 1.9.8 which should fix the issue. Let me know if you run into anything else. Best, Nick Awesome, thank you!

Comments

7 shown
Nick Diego 2021-02-23T10:44:00+00:00

Thanks for the heads up @geea . Are you able to share the fix you implemented for Beaver Builder? If not, no worries. It would give me a bit of a jump start on fixing the issue as I am not very familiar with that plugin 😉 Thanks, Nick

geea 2021-02-23T11:06:00+00:00

Hey Nick! Actually, it would be more relevant to tell you what to change in the plugin file than I what I did from outside the plugin. In inc/widget-class.php 1. change line 70 from: add_action( 'admin_enqueue_scripts', array( $this, 'fpa_admin_scripts_enqueue' ) ); to: add_action( 'wp_enqueue_scripts', array( $this, 'fpa_admin_scripts_enqueue' ) ); 2. change line 589 from: if ( 'widgets.php' == $hook || 'customize.php' == $hook || defined( 'SITEORIGIN_PANELS_VERSION' ) ) { to: if ( 'widgets.php' == $hook || 'customize.php' == $hook || defined( 'SITEORIGIN_PANELS_VERSION' ) || FLBuilderModel::is_builder_active() ) { Hope this helps! This reply was modified 5 years, 3 months ago by geea .

Nick Diego 2021-02-23T12:11:00+00:00

This is awesome, thanks @geea . I will push an update tonight or by tomorrow at the latest. I’ll followup when it is up. Best, Nick

geea 2021-02-23T16:26:00+00:00

That’s great, thank you, looking forward to the update. Cheers!

geea 2021-02-24T09:47:00+00:00

PS: Correction (although you probably noticed it out already) – you’ll need to add to line 70 instead of changing it.

Nick Diego 2021-02-24T18:10:00+00:00

Just pushed version 1.9.8 which should fix the issue. Let me know if you run into anything else. Best, Nick

geea 2021-02-24T19:28:00+00:00

Awesome, thank you!